mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 15:26:51 +08:00
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.
23 lines
520 B
TOML
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"
|
|
|