-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 976 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
41
42
[package]
name = "bacchus-gpu-controller"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "crdgen"
path = "src/crdgen.rs"
[[bin]]
name = "controller"
path = "src/controller.rs"
[[bin]]
name = "admission"
path = "src/admission.rs"
[[bin]]
name = "synchronizer"
path = "src/synchronizer.rs"
[dependencies]
anyhow = "1.0.72"
axum = "0.6.19"
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
csv = "1.2.2"
envy = "0.4.2"
futures = "0.3.28"
google-drive3 = "5.0.2"
json-patch = "1.0.0"
k8s-openapi = { version = "0.18.0", features = ["v1_26", "schemars"] }
kube = { version = "0.84.0", default-features = false, features = ["runtime", "derive", "rustls-tls", "admission", "client"] }
schemars = "0.8.12"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.103"
serde_yaml = "0.9.23"
sha256 = "1.2.2"
stopper = "0.2.0"
thiserror = "1.0.43"
tokio = { version = "1.29.1", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"