[package]
name = "zarust"
version = "0.2.1"
edition = "2024"
rust-version = "1.85"
description = "Rust implementation of the ZArchive format"
authors = ["Aspenini"]
license = "MIT-0"
repository = "https://github.com/Aspenini/zarust"
homepage = "https://github.com/Aspenini/zarust"
readme = "README.md"
keywords = ["archive", "compression", "zstd", "wii-u", "zarchive"]
categories = ["compression", "filesystem"]
[lib]
name = "zarust"
path = "src/lib.rs"
[[bin]]
name = "zarust"
path = "src/main.rs"
[dependencies]
rayon = "1.10"
sha2 = "0.10"
zstd = "0.13"
[profile.release]
lto = "thin"
strip = true