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-03-16 00:07:15 +00:00
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
2023-11-12 00:24:38 +00:00
schemars = "0.8.16"
2024-03-29 00:20:59 +00:00
tokio = { version = "1.37.0", features = ["full"] }
2024-04-09 00:12:30 +00:00
kube = { version = "0.90.0", features = ["runtime", "derive"] }
2024-03-25 09:54:30 +00:00
k8s-openapi = { version = "0.21.1", features = ["v1_29"] }
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-04-06 00:12:22 +00:00
reqwest = "0.12.3"