mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 09:40:32 +00:00
29 lines
581 B
TOML
29 lines
581 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 = "2.2.0"
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-stream = "0.1.17"
|
|
tokio-tar = { workspace = true }
|
|
xz2 = { version = "0.1", optional = true, features = ["static"] }
|
|
|
|
|
|
[lints]
|
|
workspace = true
|