[package]
edition = "2024"
name = "sharc"
version = "0.1.2"
authors = ["Guillaume Voirin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple, high-speed archiver using the density compression library"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/g1mv/sharc"
[lib]
name = "sharc"
path = "src/lib.rs"
[[bin]]
name = "sharc"
path = "src/bin/sharc.rs"
[[bin]]
name = "unsharc"
path = "src/bin/unsharc.rs"
[dependencies.clap]
version = "4.5.56"
features = ["derive"]
[dependencies.density-rs]
version = "0.16.6"
[dependencies.memmap2]
version = "0.9.9"
[dependencies.rayon]
version = "1.11.0"
[dependencies.seahash]
version = "4.1.0"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
debug-assertions = false
rpath = false
panic = "abort"
overflow-checks = false
incremental = false