4 authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>", "João M. Bezerra <marcospb19@hotmail.com>"]
7 repository = "https://github.com/ouch-org/ouch"
9 keywords = ["decompression", "compression", "cli"]
10 categories = ["command-line-utilities", "compression", "encoding"]
11 description = "A command-line utility for easily compressing and decompressing files and directories."
16 clap = { version = "4.0.26", features = ["derive", "env"] }
18 flate2 = { version = "1.0.24", default-features = false }
23 linked-hash-map = "0.5.6"
31 zip = { version = "0.6.3", default-features = false, features = ["time"] }
32 zstd = { version = "0.12.0", default-features = false }
33 # zstd-sys > 2.0.1 unconditionally enables thin LTO and causes CI to fail
34 # https://github.com/gyscos/zstd-rs/pull/155
37 [target.'cfg(unix)'.dependencies]
38 time = { version = "0.3.17", default-features = false }
40 [target.'cfg(not(unix))'.dependencies]
41 is_executable = "1.0.1"
44 clap = { version = "4.0.26", features = ["derive", "env", "string"] }
45 clap_complete = "4.0.5"
51 parse-display = "0.6.0"
53 rand = { version = "0.8.5", default-features = false, features = ["small_rng", "std"] }
54 test-strategy = "0.2.1"
57 default = ["flate2/zlib", "zip/deflate-zlib", "zstd/thin"]