minio-rs/common/Cargo.toml
Henk-Jan Lebbink 2daacc0fcf
Fix incorrect part size in multipart copy; added missing response properties (#196)
The bug was using size (remaining bytes) instead of length (actual part size) when constructing PartInfo in the
  multipart copy loop. This would record wrong sizes for each part - especially problematic for the last part.
2025-12-01 10:11:38 +01:00

23 lines
520 B
TOML

[package]
name = "minio-common"
version = "0.1.0"
edition = "2024"
[dependencies]
minio = { path = ".." }
uuid = { workspace = true, features = ["v4"] }
reqwest = { workspace = true }
bytes = { workspace = true }
async-std = { workspace = true }
futures-io = { workspace = true }
tokio = { workspace = true, features = ["full"] }
rand = { workspace = true, features = ["small_rng"] }
log = { workspace = true }
chrono = { workspace = true }
http = { workspace = true }
[lib]
name = "minio_common"
path = "src/lib.rs"