untree 0.10.0

untree inverts the action of tree. It allows you to create directory trees from a textual representation of the tree.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = ::embed_doc_image::embed_image!("image1", "media/image1.png")]
#![doc = include_str!("../README.md")]

mod either;
mod errors;
mod functions;
mod more_context;
mod path_action;
mod types;

use either::either;
pub use errors::*;
pub use functions::*;
pub use more_context::*;
pub use path_action::*;
pub use types::*;