[package] name = "nzrd" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tarpc = { version = "0.31", features = ["tokio1", "unix", "serde-transport", "serde-transport-bincode"] } tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "process"] } tokio-serde = { version = "0.8.0", features = ["bincode"] } sled = "0.34.7" # virt = "0.2.11" virt = { path = "../../libvirt-rust" } 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"] } # for new @attr support, awaiting 0.27.0 quick-xml = { git = "https://github.com/tafia/quick-xml", rev = "fb079b6714d7238d5180aaa098c5f9b02dbcc7da", features = ["serialize"] } serde_with = "2.1.0" serde_yaml = "0.9.14" rand = "0.8.5" libc = "0.2.137" home = "0.5.4" stdext = "0.3.1" zerocopy = "0.6.1" nzr-api = { path = "../api" } futures = "0.3" async-trait = "0.1.60" ciborium = "0.2.0" ciborium-io = "0.2.0" trust-dns-server = "0.22.0" log = "0.4.17" syslog = "6.0.1" nix = "0.26.1" tempdir = "0.3.7" [dev-dependencies] regex = "1" [[bin]] name = "nzrd" path = "src/main.rs"