mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 15:26:51 +08:00
* error refactored: moved to thiserror * Result type alias for better ergonomics: * removed field from MinioErrorCode::BucketNotEmpty enum * made field private of MinioErrorResponse * updated XmlError * simplified calling errors * bumped toolchain channel form 1.86.0 to 1.87.0 * bumped toolchain channel form 1.87.0 to 1.88.0 due to clippy fixes that are not compatible with 1.87.0
20 lines
411 B
TOML
20 lines
411 B
TOML
[package]
|
|
name = "minio-macros"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
|
|
[dependencies]
|
|
syn = "2.0.104"
|
|
proc-macro2 = "1.0.95"
|
|
quote = "1.0.40"
|
|
darling = "0.21.0"
|
|
darling_core = "0.21.0"
|
|
uuid = { version = "1.17.0", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
minio_common = { path = "../common" } |