38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[package]
|
|
name = "watchman"
|
|
version = "0.2.3"
|
|
edition = "2021"
|
|
description = "Detect and Act on unauthorized access of any kind from any source."
|
|
authors = ["jkoontsiii@gmail.com"]
|
|
license = "MIT"
|
|
repository = "https://code.koonts.net/helloimalemur/watchman"
|
|
homepage = "https://code.koonts.net/helloimalemur/watchman"
|
|
documentation = "https://code.koonts.net/helloimalemur/watchman#readme"
|
|
rust-version = "1.70"
|
|
keywords = ["file-integrity", "filesystem-integrity", "change-detection", "watchman"]
|
|
categories = ["command-line-utilities", "filesystem", "network-programming"]
|
|
readme = "README.md"
|
|
exclude = ["target/**", "plan/**", "watchman.service", "run.sh", "install.sh"]
|
|
# 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"
|
|
lazy_static = "1.5.0"
|
|
log = "0.4"
|
|
env_logger = "0.11" |