-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
65 lines (61 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "kwctl"
description = "Tool to manage Kubewarden policies"
version = "1.18.0"
authors = ["Kubewarden Developers <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap_complete = "4.5"
clap = { version = "4.5", features = ["cargo", "env"] }
directories = "5.0.1"
flate2 = "1.0.29"
humansize = "2.1"
itertools = "0.13.0"
k8s-openapi = { version = "0.23.0", default-features = false, features = [
"v1_30",
] }
lazy_static = "1.4.0"
pem = "3"
pulldown-cmark-mdcat = { version = "2.5.0", default-features = false, features = [
"regex-fancy",
] }
policy-evaluator = { git = "https://github.com/kubewarden/policy-evaluator", tag = "v0.19.3" }
rustls-pki-types = { version = "1", features = ["alloc"] }
prettytable-rs = "^0.10"
pulldown-cmark = { version = "0.12.1", default-features = false }
regex = "1"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.34"
syntect = { version = "5.2", default-features = false, features = [
"default-syntaxes",
"parsing",
] }
tar = "0.4.40"
thiserror = "2.0"
tiny-bench = "0.4"
tokio = { version = "^1.41.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt"] }
url = "2.5.0"
walrus = "0.22.0"
wasmparser = "0.219"
time = "0.3.36"
semver = { version = "1.0.22", features = ["serde"] }
# 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",
] }
[dev-dependencies]
assert_cmd = "2.0.14"
hyper = { version = "1.5.0" }
predicates = "3.1"
rstest = "0.23.0"
tempfile = "3.14"
testcontainers = { version = "0.23", features = ["blocking"] }
tower-test = "0.4"