-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
52 lines (46 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "linux-package-analyzer"
version = "0.3.0"
edition = "2021"
rust-version = "1.75"
authors = ["Gregory Szorc <[email protected]>"]
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.1"
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"