5 "João M. Bezerra <marcospb19@hotmail.com>",
6 "Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>",
10 repository = "https://github.com/ouch-org/ouch"
12 keywords = ["decompression", "compression", "cli"]
13 categories = ["command-line-utilities", "compression", "encoding"]
14 description = "A command-line utility for easily compressing and decompressing files and directories."
18 bstr = { version = "1.10.0", default-features = false, features = ["std"] }
21 bzip3 = { version = "0.9.0", features = ["bundled"] }
22 clap = { version = "4.5.20", features = ["derive", "env"] }
23 filetime_creation = "0.2"
24 flate2 = { version = "1.0.30", default-features = false }
26 gzp = { version = "0.11.3", default-features = false, features = [
31 linked-hash-map = "0.5.6"
37 sevenz-rust = { version = "0.6.1", features = ["compress", "aes256"] }
41 time = { version = "0.3.36", default-features = false }
42 unrar = { version = "0.5.6", optional = true }
44 zip = { version = "0.6.6", default-features = false, features = [
48 zstd = { version = "0.13.2", default-features = false, features = ["zstdmt"] }
50 [target.'cfg(not(unix))'.dependencies]
51 is_executable = "1.0.1"
54 clap = { version = "4.5.20", features = ["derive", "env", "string"] }
55 clap_complete = "4.5.28"
56 clap_mangen = "0.2.24"
61 insta = { version = "1.40.0", features = ["filters"] }
62 parse-display = "0.9.1"
64 rand = { version = "0.8.5", default-features = false, features = [
69 test-strategy = "0.4.0"
72 default = ["use_zlib", "use_zstd_thin", "unrar"]
73 use_zlib = ["flate2/zlib", "gzp/deflate_zlib", "zip/deflate-zlib"]
74 use_zstd_thin = ["zstd/thin"]