minio-rs/macros/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

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