Fix README small markdown error
[ouch.git] / Cargo.toml
blob071672aac15866564fb9d453520f5d91768bff7f
1 [package]
2 name = "ouch"
3 version = "0.2.0"
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 atty        = "0.2.14"
17 once_cell   = "1.8.0"
18 walkdir     = "2.3.2"
19 strsim      = "0.10.0"
20 bzip2       = "0.4.3"
21 libc        = "0.2.103"
22 tar         = "0.4.37"
23 xz2         = "0.1.6"
24 zip         = { version =  "0.5.13", default-features = false, features = ["deflate-miniz"] }
25 flate2      = { version = "1.0.22", default-features = false, features = ["zlib"] }
26 zstd        = { version = "0.9.0", default-features = false, features = ["thin"] }
28 [dev-dependencies]
29 tempfile = "3.2.0"
30 infer = "0.5.0"
31 rand = { version = "0.8.3", default-features = false, features = ["small_rng", "std"] }
33 [profile.release]
34 lto = true
35 codegen-units = 1
36 opt-level = 3