multiboot2 0.24.0

Convenient and safe parsing of Multiboot2 Boot Information (MBI) structures and the contained information tags. Usable in `no_std` environments, such as a kernel. An optional builder feature also allows the construction of the corresponding structures.
Documentation
[dependencies.bitflags]
version = "2.9.1"

[dependencies.log]
default-features = false
version = "~0.4"

[dependencies.multiboot2-common]
default-features = false
version = "0.3.0"

[dependencies.ptr_meta]
default-features = false
features = ["derive"]
version = "~0.3"

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

[dependencies.uefi-raw]
default-features = false
version = "~0.8.0"

[features]
alloc = ["multiboot2-common/alloc"]
builder = ["alloc", "multiboot2-common/builder"]
default = ["builder"]

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

[package]
authors = ["Philipp Oppermann <dev@phil-opp.com>", "Calvin Lee <cyrus296@gmail.com>", "Isaac Woods", "Philipp Schuster <phip1611@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "no-std::no-alloc", "parsing"]
description = """
Convenient and safe parsing of Multiboot2 Boot Information (MBI)
structures and the contained information tags. Usable in `no_std` environments,
such as a kernel. An optional builder feature also allows the construction of
the corresponding structures.
"""
documentation = "https://docs.rs/multiboot2"
edition = "2024"
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2"
keywords = ["Multiboot2", "kernel", "boot", "bootloader"]
license = "MIT/Apache-2.0"
name = "multiboot2"
readme = "README.md"
repository = "https://github.com/rust-osdev/multiboot2"
resolver = "2"
rust-version = "1.85.0"
version = "0.24.0"

[package.metadata.docs.rs]
all-features = true