- hound-api: shared wire types (Status/ScanRequest/ScanResult/Found) + line-delimited JSON-RPC client used by both clients - houndd: daemon binding a Unix socket, dispatching status/scan to ClamAV, parsing per-file results, deduping --allmatch hits - hound: clap CLI (status / scan --json), colored human output, exit codes 0=clean 1=threats - workspace scaffolding: toolchain, gitignore, env example, editorconfig
21 lines
414 B
TOML
21 lines
414 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/*"]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
repository = "https://git.joelovestech.com/Hound/Antivirus.git"
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
colored = "2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
codegen-units = 1
|