Antivirus/Cargo.toml
2026-08-21 15:08:35 -05:00

32 lines
864 B
TOML

[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.12"
edition = "2021"
license = "MIT"
repository = "https://git.joelovestech.com/Hound/Antivirus.git"
[workspace.dependencies]
hound-watch = { path = "crates/hound-watch" }
hound-supply = { path = "crates/hound-supply" }
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
colored = "2"
time = { version = "0.3", features = ["serde", "std", "formatting"] }
inotify = "0.10"
yara-x = "1.19"
libc = "0.2"
sha2 = "0.10"
ed25519-dalek = { version = "2", features = ["rand_core"] }
ureq = { version = "2", default-features = false, features = ["tls", "gzip"] }
hound-defs = { path = "crates/hound-defs" }
hound-mcp = { path = "crates/hound-mcp" }
[profile.release]
lto = true
strip = true
codegen-units = 1