[package]
edition = "2021"
rust-version = "1.85"
name = "lzo"
version = "0.1.1"
authors = ["Albert Hui"]
build = false
exclude = ["validation/lzodiff"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe, dependency-free, no_std pure-Rust LZO1X decompressor — bounds-checked and fuzz-hardened for reading untrusted lzo1x_1 / lzo1x_999 streams."
homepage = "https://github.com/SecurityRonin/lzo"
documentation = "https://docs.rs/lzo"
readme = "README.md"
keywords = [
"lzo",
"lzo1x",
"decompression",
"no-std",
"forensics",
]
categories = [
"compression",
"no-std",
]
license = "MIT"
repository = "https://github.com/SecurityRonin/lzo"
[features]
alloc = []
default = ["alloc"]
[lib]
name = "lzo"
path = "src/lib.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[lints.clippy]
missing_errors_doc = "allow"
verbose_bit_mask = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"