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"] }
19 clap = { version = "4.5.20", features = ["derive", "env"] }
20 filetime_creation = "0.2"
21 flate2 = { version = "1.0.30", default-features = false }
23 gzp = { version = "0.11.3", default-features = false, features = ["snappy_default"] }
26 linked-hash-map = "0.5.6"
32 sevenz-rust = { version = "0.6.1", features = ["compress", "aes256"] }
36 time = { version = "0.3.36", default-features = false }
37 unrar = { version = "0.5.6", optional = true }
39 zip = { version = "0.6.6", default-features = false, features = ["time", "aes-crypto"] }
40 zstd = { version = "0.13.2", default-features = false, features = ["zstdmt"]}
42 [target.'cfg(not(unix))'.dependencies]
43 is_executable = "1.0.1"
46 clap = { version = "4.5.20", features = ["derive", "env", "string"] }
47 clap_complete = "4.5.28"
48 clap_mangen = "0.2.24"
53 insta = { version = "1.40.0", features = ["filters"] }
54 parse-display = "0.9.1"
56 rand = { version = "0.8.5", default-features = false, features = ["small_rng", "std"] }
58 test-strategy = "0.4.0"
61 default = ["use_zlib", "use_zstd_thin", "unrar"]
62 use_zlib = ["flate2/zlib", "gzp/deflate_zlib", "zip/deflate-zlib"]
63 use_zstd_thin = ["zstd/thin"]