[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"