fdt-raw 0.2.0

A low-level, no-std compatible library for parsing Flattened Device Tree (FDT) binary files
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"
name = "fdt-raw"
version = "0.2.0"
authors = ["周睿 <zrufo747@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A low-level, no-std compatible library for parsing Flattened Device Tree (FDT) binary files"
readme = "README.md"
keywords = [
    "device-tree",
    "dtb",
    "embedded",
    "no-std",
    "bare-metal",
]
categories = [
    "embedded",
    "no-std",
    "hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drivercraft/fdt-parser"

[package.metadata.docs.rs]
all-features = true
targets = [
    "x86_64-unknown-linux-gnu",
    "aarch64-unknown-none-softfloat",
    "riscv64gc-unknown-none-elf",
]

[features]

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

[[test]]
name = "classify"
path = "tests/classify.rs"

[[test]]
name = "node"
path = "tests/node.rs"

[[test]]
name = "ranges"
path = "tests/ranges.rs"

[[test]]
name = "rsv"
path = "tests/rsv.rs"

[dependencies.heapless]
version = "0.9"

[dependencies.log]
version = "0.4"

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

[dev-dependencies.env_logger]
version = "0.11"