[package]
edition = "2021"
rust-version = "1.85"
name = "iso-parser"
version = "0.16.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Boot-entry discovery from ISO installation media (Arch, Debian/Ubuntu, Fedora/RHEL, Alpine, NixOS, Mint)"
homepage = "https://github.com/aegis-boot/aegis-boot"
documentation = "https://docs.rs/iso-parser"
readme = "README.md"
keywords = [
"iso",
"boot",
"kexec",
"rescue",
"installer",
]
categories = [
"filesystem",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aegis-boot/aegis-boot"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = []
[lib]
name = "iso_parser"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
features = ["std"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.similar-asserts]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.14"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"