Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 13 additions & 77 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ description = "A command-line utility for easily compressing and decompressing f
brotli = "7.0.0"
bstr = { version = "1.10.0", default-features = false, features = ["std"] }
bytesize = "1.3.0"
bzip2 = "0.4.4"
bzip2 = "0.6.1"
bzip3 = { version = "0.9.0", features = ["bundled"], optional = true }
clap = { version = "4.5.20", features = ["derive", "env"] }
file_type_enum = "3.0.1"
filetime_creation = "0.2"
flate2 = { version = "1.0.30", default-features = false }
fs-err = "2.11.0"
gzp = { version = "2.0.1", default-features = true, features = [
gzp = { version = "2.0.1", default-features = false, features = [
"snappy_default",
] }
ignore = "0.4.25"
Expand Down Expand Up @@ -77,7 +77,7 @@ clap_mangen = "0.2.24"

[features]
default = ["unrar", "use_zlib", "use_zstd_thin", "bzip3"]
use_zlib = ["flate2/zlib", "gzp/deflate_zlib", "zip/deflate-flate2-zlib"]
use_zlib = ["flate2/zlib-rs", "gzp/deflate_rust", "zip/deflate-flate2-zlib-rs"]
use_zstd_thin = ["zstd/thin"]

# For generating binaries for releases
Expand Down
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,20 +183,6 @@ Check the [releases page](https://github.com/ouch-org/ouch/releases).

Check the [wiki guide on compiling](https://github.com/ouch-org/ouch/wiki/Compiling-and-installing-from-source-code).

# Runtime Dependencies

If running `ouch` results in a linking error, it means you're missing a runtime dependency.

If you're downloading binaries from the [releases page](https://github.com/ouch-org/ouch/releases), try the `musl` variants, those are static binaries that require no runtime dependencies.

Otherwise, you'll need these libraries installed on your system:

* [libbz2](https://www.sourceware.org/bzip2)
* [libbz3](https://github.com/kspalaiologos/bzip3)
* [libz](https://www.zlib.net)

These should be available in your system's package manager.

# Benchmarks

Benchmark results are available [here](benchmarks/results.md).
Expand Down
Loading