//! # dtb_parser
//!
//! Parses a device tree blob to a human-friendly data structure.
//!
//! The no [std] but [alloc] library is required.
extern crate alloc;
pub use DeviceTree;
/// `DeviceTree`
/// `DeviceTreeError`
/// `DeviceTreeNode`
/// `NodeProperty`
/// Traits for the crate