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", "zip", "tar", "gzip", "accessibility", "a11y"]
10 categories = ["command-line-utilities", "compression", "encoding"]
11 description = "A command-line utility for easily compressing and decompressing files and directories."
13 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
18 clap = { version = "3.1.18", features = ["derive", "env"] }
19 flate2 = { version = "1.0.24", default-features = false }
22 linked-hash-map = "0.5.4"
28 zip = { version = "0.6.2", default-features = false }
29 zstd = { version = "0.11.2", default-features = false }
34 [target.'cfg(unix)'.dependencies]
35 time = { version = "0.3.9", default-features = false }
37 [target.'cfg(not(unix))'.dependencies]
38 is_executable = "1.0.1"
41 clap = { version = "3.1.18", features = ["derive", "env"] }
42 clap_complete = "3.1.4"
47 parse-display = "0.5.5"
49 rand = { version = "0.8.5", default-features = false, features = ["small_rng", "std"] }
50 test-strategy = "0.2.0"
53 default = ["flate2/zlib", "zip/deflate-zlib", "zstd/thin"]