-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (64 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (64 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "cluster-api-addon-provider-fleet"
version = "0.1.0"
edition = "2024"
default-run = "controller"
license = "Apache-2.0"
publish = true
[[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 = []
agent-initiated = ["default"]
telemetry = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.10.1"
actix-web = "4.13.0"
futures = "0.3.32"
tokio = { version = "1.52.2", features = ["macros", "rt-multi-thread", "process"] }
k8s-openapi = { version = "0.27.1", features = ["latest", "schemars"] }
kube = { version = "3.1.0" , features = [
"runtime",
"client",
"derive",
"unstable-runtime",
"unstable-client",
] }
schemars = { version = "1.2.1", features = ["jiff02"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_with = "3.17"
serde_json = "1.0.149"
serde_yaml = "0.9.34"
prometheus = "0.14.0"
jiff = "0.2.24"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["json", "env-filter"] }
tracing-opentelemetry = "0.32.1"
opentelemetry = { version = "0.31.0" }
opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic", "logs"]}
opentelemetry_sdk = { version = "0.32.0" }
thiserror = "2.0.18"
anyhow = "1.0.102"
base64 = "0.22.1"
clap = { version = "4.5.60", features = ["derive"] }
cluster-api-rs = "1.13.1"
fleet-api-rs = "0.15.1"
async-broadcast = "0.7.2"
pin-project = "1.1.12"
async-stream = "0.3.6"
educe = { version = "0.6.0", features = ["PartialEq"] }
[dev-dependencies]
assert-json-diff = "2.0.2"
http = "1"
hyper = "1"
tower-test = "0.4.0"