-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.03 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
[workspace]
members = ["rust/*"]
resolver = "2"
[workspace.package]
repository = "https://github.com/stackabletech/docker-images"
authors = ["Stackable <info@stackable.tech>"]
license = "Apache-2.0"
[workspace.dependencies]
cap-std = "4.0.2"
clap = { version = "4.5.41", features = ["derive"] }
clap_complete = "4.5.55"
clap_complete_nushell = "4.5.8"
git2 = "0.20.1"
glob = "0.3.2"
oci-spec = "0.9.0"
rstest = "0.26.1"
semver = { version = "1.0.26", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.140"
snafu = "0.8.5"
strum = { version = "0.28.0", features = ["derive"] }
tempfile = "3.16.0"
time = { version = "0.3.41", features = ["parsing", "formatting"] }
tokio = { version = "1.46.1", features = ["rt", "macros", "process"] }
toml = "1.0.3"
tracing = "0.1.41"
tracing-indicatif = "0.3.13"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = { version = "2.5.4", features = ["serde"] }
[workspace.lints.clippy]
unwrap_in_result = "deny"
unwrap_used = "deny"
panic = "deny"