- 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
18 lines
381 B
TOML
18 lines
381 B
TOML
[package]
|
|
name = "hound"
|
|
description = "Hound CLI client for the houndd daemon"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "hound"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
hound-api = { path = "../hound-api" }
|
|
anyhow.workspace = true
|
|
serde_json.workspace = true
|
|
clap.workspace = true
|
|
colored.workspace = true
|