mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-07 17:18:21 +00:00
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[package]
|
|
name = "nfsense"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.74"
|
|
axum = "0.6.20"
|
|
ipnet = { version = "2.8.0", features = ["serde"] }
|
|
jsonrpsee = { version = "0.20.3", features = ["server"] }
|
|
macaddr = { version = "1.0.1", features = ["serde"] }
|
|
pwhash = "1.0.0"
|
|
rbtag = "0.3.0"
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
thiserror = "1.0.50"
|
|
tokio = { version = "1.33.0", features = ["full"] }
|
|
tower-cookies = "0.9.0"
|
|
tower-http = "0.4.4"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.17"
|
|
uuid = { version = "1.5.0", features = ["v4"] }
|
|
tera = "1"
|
|
lazy_static = "1.4.0"
|
|
garde = { version = "0.20.0", features = ["full"] }
|
|
once_cell = "1.19.0"
|
|
regex = "1.10.5"
|
|
zbus = { version = "4.4.0", default-features = false, features = ["tokio"] }
|
|
zbus_systemd = { version = "0.25600.0", features = [
|
|
"systemd1",
|
|
"network1",
|
|
"resolve1",
|
|
"hostname1",
|
|
"timedate1",
|
|
] }
|