Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

put compression backends behind features, clean up Cargo.toml #187

Merged
merged 1 commit into from
Nov 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
put compression backends behind features, clean up Cargo.toml
  • Loading branch information
figsoda committed Nov 11, 2021
commit bdd3ac0c1de2a626befaccd010821ec4ea923d2d
29 changes: 16 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ description = "A command-line utility for easily compressing and decompressing f
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = "=3.0.0-beta.5" # Keep it pinned while in beta!
atty = "0.2.14"
fs-err = "2.6.0"
once_cell = "1.8.0"
walkdir = "2.3.2"
bzip2 = "0.4.3"
libc = "0.2.103"
tar = "0.4.37"
lzzzz = "0.8.0"
xz2 = "0.1.6"
zip = { version = "0.5.13", default-features = false, features = ["deflate-miniz"] }
flate2 = { version = "1.0.22", default-features = false, features = ["zlib"] }
zstd = { version = "0.9.0", default-features = false, features = ["thin"] }
atty = "0.2.14"
bzip2 = "0.4.3"
clap = "=3.0.0-beta.5" # Keep it pinned while in beta!
flate2 = { version = "1.0.22", default-features = false }
fs-err = "2.6.0"
libc = "0.2.103"
linked-hash-map = "0.5.4"
lzzzz = "0.8.0"
once_cell = "1.8.0"
tar = "0.4.37"
walkdir = "2.3.2"
xz2 = "0.1.6"
zip = { version = "0.5.13", default-features = false }
zstd = { version = "0.9.0", default-features = false }

[build-dependencies]
clap = "=3.0.0-beta.5"
Expand All @@ -41,6 +41,9 @@ rand = { version = "0.8.3", default-features = false, features = ["small_rng", "
tempfile = "3.2.0"
test-strategy = "0.1.2"

[features]
default = ["flate2/zlib", "zip/deflate-zlib", "zstd/thin"]

[profile.release]
lto = true
codegen-units = 1
Expand Down