-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 997 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
[package]
name = "kubedal"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = "4.5.31"
futures = "0.3.31"
k8s-openapi = { version = "0.24.0", features = ["v1_29"] }
kube = { version = "0.98.0", features = ["derive", "runtime"] }
opendal = { version = "0.52.0", features = ["services-s3", "services-http"] }
fuse3 = { version = "0.8.1", features = ["unprivileged", "tokio-runtime"] }
fuse3_opendal = "0.0.13"
prost = "0.13.5"
prost-types = "0.13.5"
serde = "1.0.218"
serde_json = "1.0.140"
tokio = { version = "1.43.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
tonic = { version = "0.12.3", features = ["server"] }
uuid = "1.15.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
schemars = "0.8.22"
serde_yaml = "0.9.34"
thiserror = "2.0.12"
sys-mount = "3.0.1"
[build-dependencies]
tonic-build = "0.12.3"
[[bin]]
name = "kubedal"
path = "src/main.rs"
[[bin]]
name = "crdgen"
path = "src/crdgen.rs"