[package] name = "zoned" version = "0.1.0" edition = "2021" authors = [ "Elijah Moore ", "Neil Kollack ", "Toby Vincent ", "Anthony Schneider ", ] description = "daemon for managing containers using systemd-nspawn and ZFS" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.53" figment = "0.10.6" lazy_static = "1.4.0" rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] } rocket_okapi = { version = "0.8.0-rc.1", features = ["rapidoc", "swagger"] } serde = "1.0.136" thiserror = "1.0.30" zone_core = { version = "0.1.0", path = "../zone_core" } zone_nspawn = { version = "0.1.0", path = "../zone_nspawn" } zone_zfs = { version = "0.1.0", path = "../zone_zfs" } [features]