MinioK8sBuckets/Cargo.toml

22 lines
627 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]
2023-06-12 00:22:54 +00:00
log = "0.4.19"
env_logger = "0.10.0"
anyhow = "1.0.71"
2023-07-11 00:12:36 +00:00
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.102"
schemars = "0.8.12"
2023-06-30 00:04:15 +00:00
tokio = { version = "1.29.1", features = ["full"] }
2023-07-15 00:12:19 +00:00
kube = { version = "0.84.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.18.0", features = ["v1_26"] } # TODO : switch to v1_27
futures = "0.3.28"
2023-07-14 00:09:51 +00:00
thiserror = "1.0.43"
rand = "0.8.5"
mktemp = "0.5.0"
2023-05-23 09:48:53 +00:00
reqwest = "0.11.18"