MinioK8sBuckets/Cargo.toml

23 lines
603 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-08-13 00:29:54 +00:00
log = "0.4.20"
env_logger = "0.10.0"
2023-08-16 00:29:11 +00:00
anyhow = "1.0.74"
2023-08-08 00:26:13 +00:00
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
schemars = "0.8.12"
2023-08-17 00:23:00 +00:00
tokio = { version = "1.32.0", features = ["full"] }
2023-08-19 14:26:48 +00:00
kube = { version = "0.85.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.19.0", features = ["v1_27"] }
futures = "0.3.28"
2023-08-18 00:25:47 +00:00
thiserror = "1.0.47"
rand = "0.8.5"
mktemp = "0.5.0"
2023-08-19 14:26:48 +00:00
reqwest = "0.11.18"