-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (84 loc) · 2.68 KB
/
Cargo.toml
File metadata and controls
89 lines (84 loc) · 2.68 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
[package]
authors = [
"Fabrizio Sestito <fabrizio.sestito@suse.com>",
"Flavio Castelli <fcastelli@suse.com>",
"José Guilherme Vanz <jguilhermevanz@suse.com>",
"Kubewarden Developers <cncf-kubewarden-maintainers@lists.cncf.io>",
"Rafael Fernández López <rfernandezlopez@suse.com>",
"Víctor Cuadrado Juan <vcuadradojuan@suse.com>",
]
edition = "2024"
name = "policy-server"
version = "1.35.0"
[dependencies]
anyhow = { workspace = true }
axum = { version = "0.8.8", features = ["macros", "query"] }
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
clap = { workspace = true }
clap-markdown = { workspace = true }
daemonize = "0.5"
futures = { workspace = true }
hex = { workspace = true }
itertools = { workspace = true }
jemalloc_pprof = "0.8"
k8s-openapi = { workspace = true }
lazy_static = { workspace = true }
mime = "0.3"
mockall_double = "0.3"
num_cpus = "1.17.0"
opentelemetry = { version = "0.31.0", default-features = false, features = [
"metrics",
"trace",
] }
opentelemetry-otlp = { version = "0.31.0", features = [
"grpc-tonic",
"metrics",
"tls",
"tonic",
] }
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
policy-evaluator = { path = "../policy-evaluator" }
pprof = { version = "0.15", features = ["prost-codec"] }
rayon = { workspace = true }
regex = { workspace = true }
rustls = { workspace = true }
rustls-pki-types = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
sha2 = { workspace = true }
sigstore_protobuf_specs = "0.5"
thiserror = { workspace = true }
tikv-jemalloc-ctl = "0.6"
tikv-jemallocator = { version = "0.6", features = [
"profiling",
"unprefixed_malloc_on_supported_platforms",
] }
tokio = { workspace = true }
tower-http = { version = "0.6.8", features = ["trace"] }
tracing = { workspace = true }
tracing-opentelemetry = "0.32.1"
tracing-subscriber = { version = "0.3", features = ["ansi", "fmt", "json"] }
[target.'cfg(target_os = "linux")'.dependencies]
inotify = "0.11"
tokio-stream = "0.1.18"
[dev-dependencies]
backon = { version = "1.6", features = ["tokio-sleep"] }
http-body-util = "0.1.3"
mockall = "0.14"
rcgen = { version = "0.14", features = ["crypto"] }
rstest = { workspace = true }
serial_test = "3"
tempfile = { workspace = true }
testcontainers = { version = "0.27", features = ["watchdog"] }
tower = { version = "0.5", features = ["util"] }
[target.'cfg(target_os = "linux")'.dev-dependencies]
openssl = "0.10"
reqwest = { version = "0.13", default-features = false, features = [
"charset",
"http2",
] }
[features]
otel_tests = []
sigstore-testing = []