Files
watchman/Cargo.toml

38 lines
1.3 KiB
TOML
Raw Normal View History

2025-09-17 12:13:02 -04:00
[package]
name = "watchman"
version = "0.2.2"
edition = "2021"
description = "Detect and Act on unauthorized access of any kind from any source."
authors = ["jkoontsiii@gmail.com"]
license = "MIT"
2025-09-17 13:52:34 -04:00
repository = "https://code.koonts.net/helloimalemur/watchman"
homepage = "https://code.koonts.net/helloimalemur/watchman"
documentation = "https://code.koonts.net/helloimalemur/watchman#readme"
2025-09-17 13:51:49 -04:00
rust-version = "1.70"
2025-09-17 13:06:18 -04:00
keywords = ["file-integrity", "filesystem-integrity", "change-detection", "watchman"]
2025-09-17 13:51:49 -04:00
categories = ["command-line-utilities", "filesystem", "network-programming"]
2025-09-17 12:13:02 -04:00
readme = "README.md"
2025-09-17 13:51:49 -04:00
exclude = ["target/**", "plan/**", "watchman.service", "run.sh", "install.sh"]
2025-09-17 12:13:02 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.13.5"
actix-web = "4.10.2"
anyhow = "1.0.97"
blake3 = "1.6.1"
chrono = "0.4.40"
clap = { version = "4.5.32", features = ["derive"] }
config = "0.15.11"
discord-webhook-lib = "0.2.1"
filesystem-hashing = "0.3.4"
httping = "0.1.9"
mime = "0.3.17"
netstat = "0.7.0"
prometheus = { version = "0.13.4" }
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.44.1", features = ["rt", "rt-multi-thread", "macros"] }
walkdir = "2.5.0"
whoami = "1.5.2"
2025-09-17 13:06:18 -04:00
lazy_static = "1.5.0"
log = "0.4"
env_logger = "0.11"