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."
15 bstr = { version = "1.10.0", default-features = false, features = ["std"] }
17 clap = { version = "4.5.16", features = ["derive", "env"] }
18 filetime_creation = "0.2"
19 flate2 = { version = "1.0.30", default-features = false }
21 gzp = { version = "0.11.3", default-features = false, features = ["snappy_default"] }
24 linked-hash-map = "0.5.6"
30 sevenz-rust = { version = "0.6.1", features = ["compress", "aes256"] }
34 time = { version = "0.3.36", default-features = false }
35 unrar = { version = "0.5.6", optional = true }
37 zip = { version = "0.6.6", default-features = false, features = ["time", "aes-crypto"] }
38 zstd = { version = "0.13.2", default-features = false, features = ["zstdmt"]}
40 [target.'cfg(not(unix))'.dependencies]
41 is_executable = "1.0.1"
44 clap = { version = "4.5.16", features = ["derive", "env", "string"] }
45 clap_complete = "4.5.28"
46 clap_mangen = "0.2.20"
51 insta = { version = "1.40.0", features = ["filters"] }
52 parse-display = "0.9.1"
54 rand = { version = "0.8.5", default-features = false, features = ["small_rng", "std"] }
56 test-strategy = "0.4.0"
59 default = ["use_zlib", "use_zstd_thin", "unrar"]
60 use_zlib = ["flate2/zlib", "gzp/deflate_zlib", "zip/deflate-zlib"]
61 use_zstd_thin = ["zstd/thin"]