-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
57 lines (53 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "cloudflared-operator"
version = "0.0.1"
edition = "2024"
default-run = "operator"
[[bin]]
name = "operator"
path = "src/main.rs"
[[bin]]
doc = false
name = "crdgen"
path = "src/crdgen.rs"
[lib]
name = "operator"
path = "src/lib.rs"
[dependencies]
anyhow = { version = "1.0.102", features = ["backtrace"] }
cloudflare = { version = "0.14.0", default-features = false, features = [
"rustls-tls",
] }
futures = "0.3.32"
k8s-openapi = { version = "0.27.1", features = ["v1_35", "schemars"] }
kube = { version = "3.1.0", default-features = false, features = [
"client",
"derive",
"runtime",
"rustls-tls",
"unstable-runtime",
] }
metrics = "0.24.3"
metrics-exporter-prometheus = { version = "0.18.1", default-features = false, features = [
"http-listener",
] }
metrics-process = "2.4.3"
mimalloc = "0.1.48"
opentelemetry = "0.31.0"
opentelemetry-otlp = { version = "0.31.1", features = ["grpc-tonic"] }
opentelemetry-semantic-conventions = { version = "0.31.0", features = [
"semconv_experimental",
] }
opentelemetry_sdk = "0.31.0"
rand = "0.10.0"
schemars = "1.2.1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_with = { version = "3.18.0", features = ["base64"] }
serde_yaml = "0.9.34"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full"] }
tokio-util = "0.7.18"
tracing = "0.1.44"
tracing-opentelemetry = "0.32.1"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }