minio-rs/common/Cargo.toml
Henk-Jan Lebbink 6f904b452a
moved Tokio runtime from general dependency to dev dependency (#167)
* moved Tokio runtime from general dependency to dev dependency
* reduced number of worker threads in tests
2025-06-18 11:26:29 +02:00

22 lines
388 B
TOML

[package]
name = "minio_common"
version = "0.1.0"
edition = "2024"
[dependencies]
minio = {path = ".." }
tokio = { version = "1.45.1", features = ["full"] }
async-std = "1.13.1"
rand = { version = "0.8.5", features = ["small_rng"] }
bytes = "1.10.1"
log = "0.4.27"
chrono = "0.4.41"
reqwest = "0.12.20"
http = "1.3.1"
futures = "0.3.31"
[lib]
name = "minio_common"
path = "src/lib.rs"