[package]
edition = "2024"
rust-version = "1.88"
name = "iso-probe"
version = "0.17.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime ISO discovery for rescue environments (loopback mount + GPT/ISO9660 + sha256/minisign sidecar verification)"
homepage = "https://github.com/aegis-boot/aegis-boot"
documentation = "https://docs.rs/iso-probe"
readme = "README.md"
keywords = [
"iso",
"loopback",
"rescue",
"kexec",
"verification",
]
categories = [
"filesystem",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aegis-boot/aegis-boot"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "iso_probe"
path = "src/lib.rs"
[[test]]
name = "mount_integration"
path = "tests/mount_integration.rs"
[dependencies.hex]
version = "0.4"
[dependencies.iso-parser]
version = "0.17"
[dependencies.minisign-verify]
version = "0.2"
[dependencies.pollster]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
features = ["std"]
[dependencies.toml]
version = "1.1"
features = [
"parse",
"display",
"serde",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.14"
[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 = "forbid"