mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-05 02:55:31 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [fs-err](https://github.com/andrewhickman/fs-err) from 2.10.0 to 2.11.0. - [Changelog](https://github.com/andrewhickman/fs-err/blob/main/CHANGELOG.md) - [Commits](https://github.com/andrewhickman/fs-err/compare/2.10.0...2.11.0) --- updated-dependencies: - dependency-name: fs-err dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.8 KiB
TOML
63 lines
1.8 KiB
TOML
[package]
|
|
name = "ouch"
|
|
version = "0.4.2"
|
|
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>", "João M. Bezerra <marcospb19@hotmail.com>"]
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ouch-org/ouch"
|
|
license = "MIT"
|
|
keywords = ["decompression", "compression", "cli"]
|
|
categories = ["command-line-utilities", "compression", "encoding"]
|
|
description = "A command-line utility for easily compressing and decompressing files and directories."
|
|
|
|
[dependencies]
|
|
atty = "0.2.14"
|
|
bstr = { version = "1.8.0", default-features = false, features = ["std"] }
|
|
bzip2 = "0.4.4"
|
|
clap = { version = "4.4.8", features = ["derive", "env"] }
|
|
filetime = "0.2.22"
|
|
flate2 = { version = "1.0.28", default-features = false }
|
|
fs-err = "2.11.0"
|
|
gzp = { version = "0.11.3", default-features = false, features = ["snappy_default"] }
|
|
ignore = "0.4.20"
|
|
libc = "0.2.150"
|
|
linked-hash-map = "0.5.6"
|
|
lz4_flex = "0.11.1"
|
|
once_cell = "1.18.0"
|
|
rayon = "1.8.0"
|
|
same-file = "1.0.6"
|
|
snap = "1.1.0"
|
|
tar = "0.4.40"
|
|
tempfile = "3.8.1"
|
|
time = { version = "0.3.30", default-features = false }
|
|
unrar = "0.5.2"
|
|
xz2 = "0.1.7"
|
|
zip = { version = "0.6.6", default-features = false, features = ["time"] }
|
|
zstd = { version = "0.13.0", default-features = false }
|
|
|
|
[target.'cfg(not(unix))'.dependencies]
|
|
is_executable = "1.0.1"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.4.8", features = ["derive", "env", "string"] }
|
|
clap_complete = "4.4.4"
|
|
clap_mangen = "0.2.15"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.12"
|
|
infer = "0.15.0"
|
|
insta = "1.34.0"
|
|
parse-display = "0.8.2"
|
|
proptest = "1.4.0"
|
|
rand = { version = "0.8.5", default-features = false, features = ["small_rng", "std"] }
|
|
test-strategy = "0.3.1"
|
|
|
|
[features]
|
|
default = ["flate2/zlib", "gzp/deflate_zlib", "zip/deflate-zlib", "zstd/thin"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
strip = true
|