-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·51 lines (44 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
executable file
·51 lines (44 loc) · 1.64 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
[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"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7", features = ["io", "compat"] }
futures = "0.3.31"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
serde_json = "1.0.148"
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"] }
schemars = "1"
clap = { version = "4.5.54", features = ["derive"] }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
rustls-pemfile = "2.2.0"
shadow-rs = "1.5.0"
snafu = { version = "0.8.9", features = ["futures"] }
# Console dependencies
axum = { version = "0.7", features = ["macros", "json"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace", "compression-gzip"] }
jsonwebtoken = "9.3"
http = "1.2"
utoipa = { version = "5", features = ["chrono"] }
utoipa-swagger-ui = { version = "8", features = ["axum", "vendored"] }
[dev-dependencies]
[build-dependencies]
shadow-rs = { version = "1.5.0", features = ["build"] }
[lints.rust]
unused_variables = "allow"
[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"