Rust library to generate static websites
1[package]
2name = "maudit-cli"
3description = "CLI to operate on maudit projects."
4version = "0.6.2"
5license = "MIT"
6edition = "2024"
7include = ["js/dist/**/**", "src/**", "Cargo.toml", "Cargo.lock", "CHANGELOG.md"]
8
9[[bin]]
10name = "maudit"
11path = "src/main.rs"
12
13[dependencies]
14chrono = "0.4.43"
15colored = "3.1.1"
16clap = { version = "4.5.54", features = ["derive"] }
17tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "process"] }
18axum = { version = "0.8.8", features = ["ws"] }
19futures = "0.3"
20tower-http = { version = "0.6.8", features = ["fs", "trace"] }
21tracing = "0.1"
22tracing-subscriber = { version = "=0.3.19", features = ["env-filter", "chrono"] }
23notify = "8.2.0"
24notify-debouncer-full = "0.7.0"
25inquire = "0.9.2"
26rand = "0.9.2"
27spinach = "3"
28ureq = "3.1.4"
29tar = "0.4.44"
30toml_edit = "0.24.0"
31local-ip-address = "0.6.9"
32flate2 = "1.1.8"
33quanta = "0.12.6"
34serde_json = "1.0"
35tokio-util = "0.7"
36cargo_metadata = "0.23.1"