mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 15:26:51 +08:00
- put_object_content -> streaming object uploads - put_object_from_file -> upload file - put_object, create_multipart_uload, abort_multipart_upload, upload_part, complete_multipart_upload -> S3 APIs for single and multipart uploads - get_object -> streaming object downloads
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[package]
|
|
name = "minio"
|
|
version = "0.2.0-alpha"
|
|
edition = "2021"
|
|
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"
|
|
keywords = ["object-storage", "minio", "s3"]
|
|
categories = ["api-bindings", "web-programming::http-client"]
|
|
|
|
[dependencies]
|
|
async-recursion = "1.0.4"
|
|
async-trait = "0.1.73"
|
|
base64 = "0.21.3"
|
|
byteorder = "1.4.3"
|
|
bytes = "1.4.0"
|
|
chrono = "0.4.27"
|
|
crc = "3.0.1"
|
|
dashmap = "5.5.3"
|
|
derivative = "2.2.0"
|
|
futures-util = "0.3.28"
|
|
hex = "0.4.3"
|
|
hmac = "0.12.1"
|
|
http = "0.2.9"
|
|
hyper = { version = "0.14.27", features = ["full"] }
|
|
lazy_static = "1.4.0"
|
|
md5 = "0.7.0"
|
|
multimap = "0.10.0"
|
|
os_info = "3.7.0"
|
|
percent-encoding = "2.3.0"
|
|
regex = "1.9.4"
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_json = "1.0.105"
|
|
sha2 = "0.10.7"
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
tokio-stream = "0.1.14"
|
|
tokio-util = { version = "0.7.8", features = ["io"] }
|
|
urlencoding = "2.1.3"
|
|
xmltree = "0.10.3"
|
|
log = "0.4.20"
|
|
env_logger = "0.11.2"
|
|
home = "0.5.9"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.20"
|
|
features = ["native-tls", "blocking", "rustls-tls", "stream"]
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
|
|
|
[[example]]
|
|
name = "file-uploader"
|