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-03-13 00:05:14 +00:00
anyhow = "1.0.81"
2024-01-14 18:35:08 +00:00
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.114"
2023-11-12 00:24:38 +00:00
schemars = "0.8.16"
2024-03-06 00:17:40 +00:00
tokio = { version = "1.36.0", features = ["full"] }
2024-01-14 18:35:08 +00:00
kube = { version = "0.87.2", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.20.0", features = ["v1_27"] }
2023-12-25 00:19:18 +00:00
futures = "0.3.30"
2024-03-13 00:05:25 +00:00
thiserror = "1.0.58"
rand = "0.8.5"
2023-09-09 00:27:48 +00:00
mktemp = "0.5.1"
2024-03-23 00:26:53 +00:00
reqwest = "0.12.1"