[package]
edition = "2021"
name = "lockzippy"
version = "0.0.1"
authors = ["Jack Danger Canty"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust AES-256 decryptor for 7z archives, part of the 8z umbrella"
readme = "README.md"
license = "Zlib"
repository = "https://github.com/JackDanger/lockzippy"
[lib]
name = "lockzippy"
path = "src/lib.rs"
[[bench]]
name = "decrypt"
path = "benches/decrypt.rs"
harness = false
[dependencies.aes]
version = "0.8"
[dependencies.cbc]
version = "0.1"
features = ["std"]
[dependencies.cipher]
version = "0.4"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]