[package]
edition = "2021"
name = "openpack"
version = "0.1.0"
authors = ["Corum Collective LLC <engineering@corumcollective.com>"]
build = false
exclude = ["target/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe archive-reader for ZIP-derived formats (ZIP, CRX, JAR, APK, IPA) with BOM-safe checks."
readme = "README.md"
keywords = [
"zip",
"archive",
"waf",
"security",
"manifest",
]
categories = [
"compression",
"filesystem",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/santhsecurity/openpack"
[features]
apk = []
crx = []
default = ["zip"]
ipa = []
zip = []
[lib]
name = "openpack"
path = "src/lib.rs"
[[example]]
name = "inspect"
path = "examples/inspect.rs"
[[example]]
name = "limits"
path = "examples/limits.rs"
[[example]]
name = "read"
path = "examples/read.rs"
[dependencies.memmap2]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.zip]
version = "2"
[dev-dependencies.tempfile]
version = "3"