-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (30 loc) · 916 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
32
33
34
35
36
37
38
39
40
[package]
name = "hahaha"
version = "0.6.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
kube = { version = "0.86", features = ["client","runtime","derive","ws"] }
k8s-openapi = { version = "0.20", default-features = false, features = ["v1_27"] }
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# simpler error handling
anyhow = "1"
thiserror = "2"
# logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
async-trait = "0.1"
# portforward client and prometheus serving
hyper = { version = "0.14", features = ["server", "runtime"] }
tower = "0.4"
# prometheus metrics
lazy_static = "1.5"
prometheus = "0.13"
hostname = "^0.4"
[dev-dependencies]
mockall = "0.13"
[profile.release]
codegen-units=1