1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "yaml")]
4mod yaml;
5#[cfg(feature = "yaml")]
6pub use yaml::{from_yaml_file, from_yaml_str};
7
8mod builder;
9pub use builder::TreeBuilder;
10
11mod tree;
12pub use tree::{Entry, Kind, Settings, Tree};