fdt/lib.rs
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! This crate contains utilities to interact with Flattened DeviceTree binary
5//! blobs. Included is a builder and parser, both available as no_std.
6
7#![no_std]
8#![forbid(unsafe_code)]
9
10pub mod builder;
11pub mod parser;
12mod spec;
13
14pub use spec::ReserveEntry;