[package] name = "linux-package-analyzer" version = "0.3.0" edition = "2021" rust-version = "1.75" authors = ["Gregory Szorc "] license = "MPL-2.0" description = "CLI tool to analyze Linux packages" keywords = ["deb", "package", "rpm"] homepage = "https://github.com/indygreg/linux-packaging-rs" repository = "https://github.com/indygreg/linux-packaging-rs.git" readme = "README.md" [[bin]] name = "lpa" path = "src/main.rs" [dependencies] anyhow = "1.0.92" clap = "4.5.20" cpio = "0.4.0" futures = "0.3.31" futures-util = "0.3.31" iced-x86 = "1.21.0" indoc = "2.0.5" num_cpus = "1.16.0" object = "0.36.5" once_cell = "1.20.2" pbr = "1.1.1" rusqlite = { version = "0.29.0", features = ["bundled"] } symbolic-demangle = "12.12.0" tokio = { version = "1.41.0", features = ["full"] } url = "2.5.2" xz2 = { version = "0.1.7", features = ["static"] } zstd = "0.13.2" [dependencies.debian-packaging] version = "0.18.0" path = "../debian-packaging" [dependencies.rpm-repository] version = "0.3.0" path = "../rpm-repository" # rpm-rs seems to be unmaintained and its old dependencies are holding us back. # Disabled until we figure out a path forward. #[dependencies.rpm-rs] #git = "https://github.com/indygreg/rpm-rs" #rev = "d6623c68a85e3a14f4260c2161c348fa697131c0" [dev-dependencies] trycmd = "0.15.8"