52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[package]
|
|
name = "nzrd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tarpc = { version = "0.34", features = [
|
|
"tokio1",
|
|
"unix",
|
|
"serde-transport",
|
|
"serde-transport-bincode",
|
|
] }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "process"] }
|
|
tokio-serde = { version = "0.9", features = ["bincode"] }
|
|
sled = "0.34.7"
|
|
virt = "0.4"
|
|
fatfs = "0.3"
|
|
uuid = { version = "1.2.2", features = [
|
|
"v4",
|
|
"fast-rng",
|
|
"serde",
|
|
"macro-diagnostics",
|
|
] }
|
|
clap = { version = "4.0.26", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
quick-xml = { version = "0.36", features = ["serialize"] }
|
|
serde_with = "2"
|
|
serde_yaml = "0.9.14"
|
|
rand = "0.8.5"
|
|
libc = "0.2.137"
|
|
home = "0.5.4"
|
|
stdext = "0.3.1"
|
|
zerocopy = "0.7"
|
|
nzr-api = { path = "../api" }
|
|
futures = "0.3"
|
|
ciborium = "0.2.0"
|
|
ciborium-io = "0.2.0"
|
|
hickory-server = "0.24"
|
|
hickory-proto = { version = "0.24", features = ["serde-config"] }
|
|
async-trait = "0.1"
|
|
log = "0.4.17"
|
|
syslog = "7"
|
|
nix = { version = "0.29", features = ["user", "fs"] }
|
|
tempfile = "3"
|
|
|
|
[dev-dependencies]
|
|
regex = "1"
|
|
|
|
[[bin]]
|
|
name = "nzrd"
|
|
path = "src/main.rs"
|