[package] name = "debian-repo-tool" version = "0.9.0" edition = "2021" rust-version = "1.75" authors = ["Gregory Szorc "] license = "MPL-2.0" description = "CLI tool to interact with Debian repositories" keywords = ["debian", "package", "apt", "deb"] homepage = "https://github.com/indygreg/linux-packaging-rs" repository = "https://github.com/indygreg/linux-packaging-rs.git" readme = "README.md" [[bin]] name = "drt" path = "src/main.rs" [dependencies] clap = "4.5.20" num_cpus = "1.16.0" pbr = "1.1.1" serde_yaml = "0.9.34" thiserror = "1.0.66" tokio = { version = "1.41.0", features = ["full"] } [dependencies.debian-packaging] version = "0.18.0" path = "../debian-packaging" [dev-dependencies] trycmd = "0.15.8"