mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-06 05:17:42 +00:00
e9610f1fb7
- Add complete IAM configuration export/import functionality with ZIP format - Add new API endpoints for IAM backup and restore operations
29 lines
606 B
TOML
29 lines
606 B
TOML
[package]
|
|
name = "rustfs-zip"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
|
|
[dependencies]
|
|
async-compression = { version = "0.4.0", features = [
|
|
"tokio",
|
|
"bzip2",
|
|
"gzip",
|
|
"zlib",
|
|
"zstd",
|
|
"xz",
|
|
] }
|
|
async_zip = { version = "0.0.17", features = ["tokio"] }
|
|
zip = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-stream = { workspace = true }
|
|
tokio-tar = { workspace = true }
|
|
xz2 = { version = "0.1", optional = true, features = ["static"] }
|
|
|
|
|
|
[lints]
|
|
workspace = true
|