nazrin/nzrd/Cargo.toml

52 lines
1.1 KiB
TOML
Raw Normal View History

2022-12-30 06:06:14 +00:00
[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"] }
2022-12-30 06:06:14 +00:00
sled = "0.34.7"
virt = "0.4"
2022-12-30 06:06:14 +00:00
fatfs = "0.3"
uuid = { version = "1.2.2", features = [
"v4",
"fast-rng",
"serde",
"macro-diagnostics",
] }
2022-12-30 06:06:14 +00:00
clap = { version = "4.0.26", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
quick-xml = { version = "0.36", features = ["serialize"] }
serde_with = "2"
2022-12-30 06:06:14 +00:00
serde_yaml = "0.9.14"
rand = "0.8.5"
libc = "0.2.137"
home = "0.5.4"
stdext = "0.3.1"
zerocopy = "0.7"
2022-12-30 06:06:14 +00:00
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"
2022-12-30 06:06:14 +00:00
log = "0.4.17"
syslog = "7"
nix = { version = "0.29", features = ["user", "fs"] }
tempfile = "3"
2022-12-30 06:06:14 +00:00
[dev-dependencies]
regex = "1"
[[bin]]
name = "nzrd"
path = "src/main.rs"