`cd_into_same_dir_as`: allow the proper IO error to bubble up and add docs
[ouch.git] / Cargo.toml
blob8fd356fffd113da5d5f1680c492263abaea4119c
1 [package]
2 name = "ouch"
3 version = "0.1.6"
4 authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>", "João M. Bezerra <marcospb19@hotmail.com>"]
5 edition = "2018"
6 readme = "README.md"
7 repository = "https://github.com/vrmiguel/ouch"
8 license = "MIT"
9 keywords = ["decompression", "compression", "zip", "tar", "gzip"]
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
15 [dependencies]
16 walkdir     = "2.3.2"
17 strsim      = "0.10.0"
18 flate2      = { version = "1.0.22", default-features = false, features = ["zlib"] }
19 bzip2       = "0.4.3"
20 tar         = "0.4.37"
21 xz2         = "0.1.6"
22 zip         = { version =  "0.5.13", default-features = false, features = ["deflate-miniz"] }
23 lazy_static = "1.4.0"
25 [dev-dependencies]
26 tempfile = "3.2.0"
27 rand = { version = "0.8.3", default-features = false, features = ["small_rng", "std"] }
29 [profile.release]
30 lto = true
31 codegen-units = 1
32 opt-level = 3