Files
minio-rs/Cargo.toml

73 lines
1.9 KiB
TOML
Raw Normal View History

2019-05-15 15:39:44 -07:00
[package]
name = "minio"
2023-09-29 09:22:38 -07:00
version = "0.2.0-alpha"
edition = "2024"
authors = ["MinIO Dev Team <dev@min.io>"]
description = "MinIO SDK for Amazon S3 compatible object storage access"
license = "Apache-2.0"
repository = "https://github.com/minio/minio-rs"
readme = "README.md"
2023-09-27 09:04:06 -07:00
keywords = ["object-storage", "minio", "s3"]
categories = ["api-bindings", "web-programming::http-client"]
2019-05-15 15:39:44 -07:00
[dependencies.reqwest]
2024-11-04 14:38:36 -08:00
version = "0.12.9"
default-features = false
features = ["stream"]
[features]
default = ["default-tls", "dep:hmac", "dep:sha2"]
default-tls = ["reqwest/default-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
ring = ["dep:ring"]
2019-05-15 15:39:44 -07:00
[dependencies]
2024-11-04 14:38:36 -08:00
async-recursion = "1.1.1"
async-trait = "0.1.87"
2024-12-15 04:31:51 +01:00
base64 = "0.22.1"
2024-11-04 14:38:36 -08:00
byteorder = "1.5.0"
bytes = "1.10.1"
chrono = "0.4.40"
2024-11-04 14:38:36 -08:00
crc = "3.2.1"
dashmap = "6.1.0"
derivative = "2.2.0"
env_logger = "0.11.7"
2024-11-04 14:38:36 -08:00
futures-util = "0.3.31"
hex = "0.4.3"
hmac = { version = "0.12.1", optional = true }
#home = "0.5.9"
2025-01-23 18:56:29 +01:00
http = "1.2.0"
2025-02-04 20:59:49 +01:00
hyper = { version = "1.6.0", features = ["full"] }
2024-11-04 14:38:36 -08:00
lazy_static = "1.5.0"
log = "0.4.26"
md5 = "0.7.0"
multimap = "0.10.0"
2024-11-04 14:38:36 -08:00
percent-encoding = "2.3.1"
rand = { version = "0.8.5", features = ["small_rng"] }
2024-11-04 14:38:36 -08:00
regex = "1.11.1"
ring = { version = "0.17.14", optional = true, default-features = false, features = ["alloc"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
sha2 = { version = "0.10.8", optional = true }
tokio = { version = "1.44.0", features = ["full"] }
2024-12-15 04:31:51 +01:00
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.13", features = ["io"] }
urlencoding = "2.1.3"
2024-11-04 14:38:36 -08:00
xmltree = "0.11.0"
futures = "0.3.31"
[dev-dependencies]
2024-11-04 14:38:36 -08:00
async-std = { version = "1.13.0", features = ["attributes", "tokio1"] }
clap = { version = "4.5.31", features = ["derive"] }
quickcheck = "1.0.3"
[[example]]
2025-01-23 18:56:29 +01:00
name = "file_uploader"
[[example]]
name = "file_downloader"
2025-01-23 18:56:29 +01:00
[[example]]
name = "object_prompt"