forked from kube-rs/controller-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "controller"
version = "0.12.3"
authors = ["clux <[email protected]>"]
edition = "2021"
default-run = "controller"
license = "Apache-2.0"
publish = false
[[bin]]
doc = false
name = "controller"
path = "src/main.rs"
[[bin]]
doc = false
name = "crdgen"
path = "src/crdgen.rs"
[lib]
name = "controller"
path = "src/lib.rs"
[features]
default = []
telemetry = ["tonic", "opentelemetry-otlp"]
[dependencies]
actix-web = "4.1.0"
futures = "0.3.21"
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread"] }
k8s-openapi = { version = "0.15.0", features = ["v1_23"], default-features = false }
schemars = { version = "0.8.10", features = ["chrono"] }
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
serde_yaml = "0.8.25"
prometheus = "0.13.1"
chrono = { version = "0.4.19", features = ["serde"] }
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.12", features = ["json", "env-filter"] }
tracing-opentelemetry = "0.17.4"
opentelemetry = { version = "0.17.0", features = ["trace", "rt-tokio"] }
opentelemetry-otlp = { version = "0.10.0", features = ["tokio"], optional = true }
# Can't upgrade this until opentelemetry-otlp upgrades it (it's in their master)
tonic = { version = "0.6.2", optional = true }
thiserror = "1.0.31"
[dependencies.kube]
features = ["runtime", "client", "derive"]
version = "0.74.0"
# testing new releases - ignore
#git = "https://github.com/kube-rs/kube-rs.git"
#rev = "8dcd5c0865ad0a40520519032119fbe4ea5f85f7"
#path = "../kube-rs/kube"