tree-fs 0.3.1

Provides a convenient way to create a tree of files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

#[cfg(feature = "yaml")]
mod yaml;
#[cfg(feature = "yaml")]
pub use yaml::{from_yaml_file, from_yaml_str};

mod builder;
pub use builder::TreeBuilder;

mod tree;
pub use tree::{Entry, Kind, Settings, Tree};