bootmgr-rs-core 0.16.5

A framework for easily creating boot managers in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88.0"
name = "bootmgr-rs-core"
version = "0.16.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A framework for easily creating boot managers in Rust"
readme = "README.md"
keywords = [
    "efi",
    "uefi",
    "boot",
]
categories = [
    "embedded",
    "no-std",
]
license = "MIT"
repository = "https://github.com/some100/bootmgr-rs"

[features]
all_parsers = [
    "bls",
    "fallback",
    "osx",
    "shell",
    "uki",
    "windows",
]
bls = []
default = [
    "all_parsers",
    "pxe",
]
fallback = []
global_allocator = []
osx = []
panic_handler = []
pxe = []
shell = []
uki = ["dep:object"]
windows = []
windows_bcd = ["dep:nt-hive"]

[lib]
name = "bootmgr_rs_core"
path = "src/lib.rs"

[dependencies.bitflags]
version = "2.9.2"

[dependencies.bytemuck]
version = "1.23.2"

[dependencies.log]
version = "0.4.27"

[dependencies.nt-hive]
version = "0.3.0"
features = ["alloc"]
optional = true
default-features = false

[dependencies.object]
version = "0.37.1"
features = [
    "pe",
    "read_core",
]
optional = true
default-features = false

[dependencies.postcard]
version = "1.1.3"
features = ["alloc"]
default-features = false

[dependencies.serde]
version = "1.0.219"
features = [
    "alloc",
    "derive",
]
default-features = false

[dependencies.sha2]
version = "0.10.9"
default-features = false

[dependencies.thiserror]
version = "2.0.12"
default-features = false

[dependencies.tinyvec]
version = "1.9.0"
features = ["alloc"]

[dependencies.uefi]
version = "0.35.0"
features = ["alloc"]

[dev-dependencies.proptest]
version = "1.7.0"

[lints.clippy]
missing_docs_in_private_items = "warn"
missing_safety_doc = "deny"
mod_module_files = "deny"
redundant_type_annotations = "warn"
undocumented_unsafe_blocks = "deny"
unnecessary_safety_comment = "warn"
unwrap_used = "deny"
use_self = "warn"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "deny"
unsafe_op_in_unsafe_fn = "deny"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]