-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (39 loc) · 1.37 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
[package]
name = "bridgekeeper"
version = "0.1.0"
authors = ["Sebastian Woehrl <[email protected]>"]
edition = "2018"
[dependencies]
log = "0.4.25"
kube = {version = "0.98.0", features = ["derive", "admission", "runtime"]}
k8s-openapi = { version = "0.24.0", default-features = false, features = ["v1_28"] }
schemars = "0.8.21"
serde = "1.0.217"
serde_derive = "1.0.217"
serde_json = "1.0.135"
serde_yaml = "0.9.34"
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros"]}
futures = "0.3.31"
pyo3 = "0.23.4"
pythonize = "0.23.0"
rcgen = "0.13.2"
base64 = "0.22.1"
argh = "0.1.13"
rust-embed = "8.5.0"
lazy_static = "1.5.0"
prometheus = { version = "0.13.4", default-features = false }
json-patch = "3.0.1"
exponential-backoff = "2.0.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt", "json", "std", "registry"] }
hyper = { version = "1.5.2", features = ["client"] }
axum = { version = "0.8.1" }
axum-server = { version = "0.7.1", features = ["tls-rustls-no-provider"] }
hyper-util = { version = "0.1.10", features = ["client", "client-legacy", "tokio", "http1"] }
[profile.release]
lto = false # Smaller size is not worth the compile time increase
# When a panic in a task occures we want the whole process to crash to trigger a kubernetes pod restart
panic = 'abort'
# Make binary smaller
debug = 0
strip = true