MinioK8sBuckets/Cargo.toml

23 lines
602 B
TOML
Raw Normal View History

[package]
name = "minio-operator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-29 00:12:37 +00:00
log = "0.4.21"
2024-03-06 00:17:35 +00:00
env_logger = "0.11.3"
2024-04-11 00:11:11 +00:00
anyhow = "1.0.82"
2024-04-17 00:11:12 +00:00
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.115"
2024-04-29 00:04:20 +00:00
schemars = "0.8.17"
2024-03-29 00:20:59 +00:00
tokio = { version = "1.37.0", features = ["full"] }
2024-07-18 00:08:46 +00:00
kube = { version = "0.92.1", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.22.0", features = ["v1_29"] }
2023-12-25 00:19:18 +00:00
futures = "0.3.30"
2024-04-21 00:11:09 +00:00
thiserror = "1.0.59"
rand = "0.8.5"
2023-09-09 00:27:48 +00:00
mktemp = "0.5.1"
2024-04-06 00:12:22 +00:00
reqwest = "0.12.3"