-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 931 Bytes
/
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
[package]
name = "overrides"
version = "0.0.4"
authors = ["Matt Turner"]
edition = "2021"
default-run = "override-generator"
[profile.release]
strip = true
opt-level = "z" # Optimize for size.
lto = true # Link-Time Optimisation, eg dead code removal.
codegen-units = 1
[dependencies]
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version="0.3", features=["std", "registry", "json", "env-filter"] }
kube = { version = "0.85", default-features = false, features = ["rustls-tls", "client", "runtime", "derive"] }
k8s-openapi = { version = "0.19", features = ["v1_27"] }
tokio = { version = "1.32", features = ["full"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
schemars = { version = "0.8", features = ["chrono"] }
maplit = "1.0"
clap = { version = "4.4", features = ["derive"] }
prometheus = "0.13"
actix-web = "4.4"
version_check = "0.9"