-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (101 loc) · 2.69 KB
/
Cargo.toml
File metadata and controls
103 lines (101 loc) · 2.69 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[workspace]
resolver = "2"
default-members = ["crates/trident"]
members = [
"crates/trident",
"crates/trident_api",
"crates/osutils",
"crates/docbuilder",
"crates/pytest",
"crates/pytest_gen",
"crates/sysdefs",
"crates/trident-proto",
]
[workspace.dependencies]
anyhow = { version = "1.0.94", features = ["backtrace"] }
bitflags = { version = "2.6.0", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }
configparser = { version = "3.1.0", features = ["indexmap"] }
const_format = "0.2.33"
derive_more = "0.99.19"
docker_credential = "1.0.1"
documented = "0.6.0"
duct = "0.13.7"
enumflags2 = { version = "0.7", features = ["serde"] }
env_logger = "0.11.5"
glob = "0.3.1"
gpt = "4.1.0"
hex = "0.4.0"
hostname = "0.4.0"
humantime = "2.3.0"
hyper = "1.8.1"
indoc = "2.0.5"
inventory = "0.3.15"
itertools = "0.13.0"
lazy_static = "1.5.0"
libc = "0.2.167"
log = "0.4.22"
maplit = "1.0.2"
mockito = "1.6.1"
netplan-types = "0.5.0"
nix = { version = "0.30.1", features = [
"fs",
"user",
"socket",
"signal",
], default-features = false }
oci-client = "0.15.0"
once_cell = "1.19"
openssl = "0.10.72"
petgraph = "0.6.5"
pretty_env_logger = "0.5.0"
proc-macro2 = "1.0.92"
procfs = "0.17.0"
prost = "0.14.1"
prost-types = "0.14.1"
quote = "1.0.37"
rand = "0.9.0"
rayon = "1.10"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = [
"blocking",
"charset",
"default-tls",
], default-features = false } # "http2" is enabled by default but causes a (false positive) CG alert
schemars = { version = "0.8.21", features = ["url", "uuid1"] }
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_variant = "0.1.3"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
signal-hook = "0.4.3"
sqlite = "0.36.1"
strum = "0.26.3"
strum_macros = "0.26.4"
svg = "0.18.0"
syn = { version = "2.0.90", features = ["full"] }
sys-mount = { version = "3.0.1", default-features = false } # Disable loop device feature
sysinfo = "0.30.13"
systemd-journal-logger = "2.2.2"
tar = "0.4.43"
tempfile = "3.14.0"
tera = "1.20.0"
textwrap = "0.16.2"
thiserror = "1.0.69"
tokio = { version = "1.48.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
tokio-util = "0.7.17"
tonic = "0.14.2"
tonic-middleware = "0.4.0"
tonic-prost = "0.14.2"
tonic-prost-build = "0.14.2"
tower = "0.5.2"
tracing = "0.1.41"
tracing-journald = "0.3.0"
tracing-subscriber = { version = "0.3.19", features = ["json"] }
url = { version = "2.5.4", features = ["serde"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
which = "6.0.3"
zstd = "0.13.3"