-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.45 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
[package]
name = "mutilator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.94"
axum = { version = "0.7.9", features = ["tracing", "http2", "macros"] }
axum-server = { version = "0.7.1", features = ["rustls", "tls-rustls"] }
json-patch = "3.0.1"
k8s-openapi = { version = "0.23.0", default-features = false, features = ["v1_30", "schemars"] }
kube = { version = "0.97.0", features = ["rustls-tls", "admission", "jsonpatch", "derive"], default-features = false }
log = { version = "0.4.22", features = ["kv_unstable", "serde", "kv_unstable_serde"] }
schemars = { version = "0.8.21", features = ["derive_json_schema"] }
serde = { version = "1.0.216", features = ["serde_derive", "derive"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["fmt", "json"] }
tracing-opentelemetry = "0.27.0"
opentelemetry = { version = "0.26.0"}
opentelemetry-otlp = { version = "0.26.0", features = ["opentelemetry-http"] }
opentelemetry-semantic-conventions = { version = "0.26.0", features = ["semconv_experimental"] }
opentelemetry_sdk = { version = "0.26.0", features = ["rt-tokio"] }
schematic = "0.17.7"
jsonptr = "0.6.3"
rustls = { version = "0.23.20", features = ["ring"] }
[dev-dependencies]
axum-test = "16.4.1"
envtestkit = "1.1.2"
pretty_assertions = "1.4.1"
rstest = "0.23.0"