Antivirus/crates/houndd/Cargo.toml
johnmcafee 2cf41ce3bd Rust engine + CLI over ClamAV Unix socket
- 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
2026-08-20 16:59:14 -05:00

17 lines
376 B
TOML

[package]
name = "houndd"
description = "Hound daemon: ClamAV-backed Unix-socket JSON-RPC engine"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[[bin]]
name = "houndd"
path = "src/main.rs"
[dependencies]
hound-api = { path = "../hound-api" }
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true