-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 1.03 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
[package]
name = "network-bandwidth-annotation-manager"
version = "0.1.0"
edition = "2021"
authors = ["Thomas Kosiewski <[email protected]>"]
description = "A dynamic admission controller setting a Kubernetes pod's network bandwidth annotations using its limits"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.6.12"
axum-server = { version = "0.4.7", features = ["tls-rustls"] }
clap = { version = "4.2.1", features = ["cargo", "env", "derive"] }
clap-verbosity-flag = "2.0.0"
color-eyre = "0.6.2"
futures = "0.3.27"
json-patch = "0.3.0"
k8s-openapi = { version = "0.17.0", features = ["v1_24"] }
kube = { version = "0.80.0", features = ["admission", "client", "runtime"] }
log = "0.4.17"
regex = "1.7.3"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.94"
tokio = { version = "1.26.0", features = ["full"] }
tracing = "0.1.37"
tracing-log = "0.1.3"
tracing-subscriber = "0.3.16"
[profile.dev.package.backtrace]
opt-level = 3