unfolder 0.0.3

library and executable to unfold a file into a folder and fold a previously unfolded folder into a file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod errors;
#[doc(hidden)]
pub use errors::Exit;
#[doc(inline)]
pub use errors::{Error, Result};
#[doc(hidden)]
pub mod cli;
#[doc(hidden)]
pub use cli::{ArgsDispatcher, ParserDispatcher, SubcommandDispatcher};

pub(crate) mod file;

#[doc(inline)]
pub use file::{fold_file, unfold_file, Progress, Action};