mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 15:26:51 +08:00
38 lines
842 B
TOML
38 lines
842 B
TOML
[package]
|
|
name = "minio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hyper = { version = "0.14.27", features = ["full"] }
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
derivative = "2.2.0"
|
|
multimap = "0.9.0"
|
|
urlencoding = "2.1.3"
|
|
lazy_static = "1.4.0"
|
|
regex = "1.9.4"
|
|
chrono = "0.4.27"
|
|
sha2 = "0.10.7"
|
|
base64 = "0.21.3"
|
|
md5 = "0.7.0"
|
|
crc = "3.0.1"
|
|
byteorder = "1.4.3"
|
|
hmac = "0.12.1"
|
|
hex = "0.4.3"
|
|
futures-core = "0.3.28"
|
|
bytes = "1.4.0"
|
|
futures-util = "0.3.28"
|
|
xmltree = "0.10.3"
|
|
http = "0.2.9"
|
|
dashmap = "5.5.3"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_json = "1.0.105"
|
|
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
|
|
async-recursion = "1.0.4"
|
|
os_info = "3.7.0"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.20"
|
|
features = ["native-tls", "blocking", "rustls-tls", "stream"]
|