-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·72 lines (64 loc) · 2.28 KB
/
Copy pathCargo.toml
File metadata and controls
executable file
·72 lines (64 loc) · 2.28 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 = "operator"
version = "0.1.0"
edition = "2024"
repository = "https://github.com/rustfs/operator"
license = "Apache-2.0"
homepage = "https://rustfs.com"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
const-str = "1.0.0"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.49.0", features = ["rt", "rt-multi-thread", "macros", "fs", "io-std", "io-util", "sync"] }
tokio-rustls = "0.26"
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7", features = ["io", "compat", "rt"] }
futures = "0.3.31"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
serde_json = "1.0.148"
serde_ignored = "0.1.14"
serde_yaml_ng = "0.10.0"
strum = { version = "0.27.2", features = ["derive"] }
k8s-openapi = { version = "0.26.1", features = ["v1_30", "schemars"] }
kube = { version = "2.0.1", features = ["runtime", "derive", "client", "rustls-tls", "unstable-runtime"] }
schemars = "1"
clap = { version = "4.5.54", features = ["derive"] }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
rustls-pemfile = "2.2.0"
webpki = { package = "rustls-webpki", version = "0.103" }
rcgen = "0.13"
x509-parser = "0.18.1"
time = "0.3.44"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
base64 = "0.22"
ring = "0.17"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
url = "2.5"
shadow-rs = "1.5.0"
snafu = { version = "0.8.9", features = ["futures"] }
kube-leader-election = { path = "crates/leader-election" }
hostname = "0.4"
# Console dependencies
axum = { version = "0.7", features = ["macros", "json"] }
hyper = "1"
hyper-util = { version = "0.1", features = ["server-auto", "service", "tokio"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace", "compression-gzip", "fs"] }
http = "1.2"
http-body-util = "0.1"
utoipa = { version = "5", features = ["chrono"] }
utoipa-swagger-ui = { version = "8", features = ["axum", "vendored"] }
async-trait = { version = "0.1.89", default-features = false }
[dev-dependencies]
[build-dependencies]
shadow-rs = { version = "1.5.0", features = ["build"] }
[lints.rust]
unused_variables = "allow"
[workspace]
members = ["crates/leader-election"]
[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"