forked from Intreecom/robotlb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.21 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
[package]
name = "robotlb"
version = "0.6.0"
edition = "2024"
readme = "README.md"
[dependencies]
async-trait = "0.1.89"
clap = { version = "4.5.21", features = ["derive", "env"] }
dotenvy = "0.15.7"
futures = "0.3.31"
hcloud = "0.25.0"
http-body-util = "0.1"
hyper = { version = "1.6", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
k8s-openapi = { version = "0.27.0", features = ["v1_35"] }
kube = { version = "3.0.0", features = ["runtime"] }
kube-leader-election = "0.43.0"
thiserror = "2.0.3"
opentelemetry = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio", "metrics"] }
opentelemetry-otlp = { version = "0.31", features = ["trace", "grpc-tonic"] }
opentelemetry-semantic-conventions = "0.31"
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "signal", "net"] }
tokio-util = "0.7"
tower-http = { version = "0.6.6", features = ["util"] }
tracing = "0.1.40"
tracing-opentelemetry = "0.32"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.6"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
debug = false
strip = true