#![warn(rust_2018_idioms)]
#![warn(rust_2021_compatibility)]
#![warn(missing_debug_implementations)]
#![warn(unreachable_pub)]
#![warn(unsafe_code)]
#![warn(rustdoc::broken_intra_doc_links)]
#![warn(clippy::pedantic)]
#![warn(clippy::clone_on_ref_ptr)]
#![warn(clippy::self_named_module_files)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::default_trait_access)]
#![allow(clippy::missing_errors_doc)]
mod node;
pub use node::{InnerNode, LeafNode, Node, NodeValue};
mod node_id;
pub use node_id::NodeId;
mod path;
pub use path::{PathSegment, PathSegmentRef, RootPath, SegmentedPath};
mod tree;
pub use tree::{
InsertOrUpdateNodeValueError, ParentChildTreeNode, PathTree, PathTreeTypes, RemovedSubTree,
TreeNode,
};
#[cfg(test)]
mod tests;