[package]
edition = "2024"
name = "bzimage"
version = "0.1.0"
authors = ["Erica Stith <rexlunae@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A create for handling bzimage format, such as Linux kernel images."
homepage = "https://github.com/rexlunae/bzimage"
documentation = "https://docs.rs/bzimage/"
readme = "README.md"
keywords = [
"kernel",
"linux",
"compression",
]
license = "MIT"
repository = "https://github.com/rexlunae/bzimage"
[lib]
name = "bzimage"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.flate2]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.simple_endian]
version = "0.3"
features = ["io"]