Files
minio-rs/Cargo.toml

90 lines
2.2 KiB
TOML
Raw Permalink Normal View History

2019-05-15 15:39:44 -07:00
[package]
name = "minio"
version = "0.3.0"
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]
version = "0.12.22"
default-features = false
features = ["stream"]
[features]
default = ["default-tls", "default-crypto"]
default-tls = ["reqwest/default-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
default-crypto = ["dep:sha2", "dep:hmac"]
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-std = { version = "1.13.1", features = ["attributes"] }
async-stream = "0.3.6"
2025-03-29 23:26:11 +01:00
async-trait = "0.1.88"
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.41"
crc = "3.3.0"
2024-11-04 14:38:36 -08:00
dashmap = "6.1.0"
derivative = "2.2.0"
env_logger = "0.11.8"
2024-11-04 14:38:36 -08:00
futures-util = "0.3.31"
hex = "0.4.3"
hmac = { version = "0.12.1", optional = true }
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"
2025-03-29 23:26:11 +01:00
log = "0.4.27"
md5 = "0.8.0"
multimap = "0.10.1"
2024-11-04 14:38:36 -08:00
percent-encoding = "2.3.1"
url = "2.5.4"
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.9", optional = true }
urlencoding = "2.1.3"
2024-11-04 14:38:36 -08:00
xmltree = "0.11.0"
futures = "0.3.31"
2025-03-29 23:26:11 +01:00
http = "1.3.1"
thiserror = "2.0.12"
[dev-dependencies]
tokio = { version = "1.47.1", features = ["full"] }
2025-03-29 23:26:11 +01:00
minio_common = { path = "./common" }
async-std = { version = "1.13.1", features = ["attributes", "tokio1"] }
clap = { version = "4.5.44", features = ["derive"] }
quickcheck = "1.0.3"
criterion = "0.7.0"
2025-06-23 13:38:40 +02:00
minio-macros = { path = "./macros" }
2025-03-29 23:26:11 +01:00
[lib]
name = "minio"
path = "src/lib.rs"
[[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"
2025-03-29 23:26:11 +01:00
[[example]]
name = "append_object"
2025-03-29 23:26:11 +01:00
[[bench]]
name = "s3-api"
path = "benches/s3/api_benchmarks.rs"
2025-05-21 16:01:36 -07:00
harness = false