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.
22 lines
432 B
TOML
22 lines
432 B
TOML
[package]
|
|
name = "minio-macros"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
futures-util = { workspace = true }
|
|
|
|
syn = "2.0"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
darling = "0.21"
|
|
darling_core = "0.21"
|
|
|
|
[dev-dependencies]
|
|
minio-common = { path = "../common" }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
proc-macro = true
|