-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (65 loc) · 2.4 KB
/
Cargo.toml
File metadata and controls
71 lines (65 loc) · 2.4 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
[package]
authors = ["Kubewarden Developers <cncf-kubewarden-maintainers@lists.cncf.io>"]
description = "Tool to manage Kubewarden policies"
edition = "2024"
name = "kwctl"
version = "1.35.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true }
clap-markdown = { workspace = true }
clap_complete = "4.5"
color-print = "0.3"
directories = "6.0.0"
flate2 = "1.1"
hex = { workspace = true }
humansize = "2.1"
indicatif = "0.18"
is-terminal = "0.4.17"
itertools = { workspace = true }
k8s-openapi = { workspace = true }
lazy_static = { workspace = true }
memchr = "2.8"
pem = "3"
policy-evaluator = { path = "../policy-evaluator" }
prettytable-rs = "^0.10"
regex = { workspace = true }
rustls-pki-types = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tar = "0.4.44"
termimad = "0.34.1"
thiserror = { workspace = true }
time = "0.3.47"
tiny-bench = "0.4"
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
url = { workspace = true }
walrus = "0.26.0"
hostname-validator = "1.1.1"
# This is required to have reqwest built using the `rustls-tls-native-roots`
# feature across all the transitive dependencies of kwctl
# This is required to have kwctl use the system certificates instead of the
# ones bundled inside of rustls
reqwest = { version = "0", default-features = false, features = [
"rustls-tls-native-roots",
] }
rustls = { version = "0.23", default-features = false }
sigstore_protobuf_specs = "0.5"
[dev-dependencies]
assert_cmd = "2.1.2"
backon = { version = "1.6", features = ["std-blocking-sleep"] }
hyper = { version = "1.8.1" }
predicates = "3.1"
rstest = { workspace = true }
sha2 = { workspace = true }
tempfile = { workspace = true }
testcontainers = { version = "0.27", features = ["blocking"] }
tower-test = "0.4"
wasm-encoder = "0.227"
[features]
sigstore-testing = []