rust-turbo 0.2.0

Use this library to build a cargo like command line using the command pattern. An implementation using rust-turbo can be found at https://github.com/megamsys/meg.git
1
2
3
4
5
6
7
8
9
10
pub use self::config::Config;
pub use self::process_builder::{process, ProcessBuilder};
pub use self::errors::{TurboResult, TurboError, ChainError, CliResult};
pub use self::errors::{CliError, ProcessError};
pub use self::errors::{process_error, internal_error, internal, human};
pub use self::errors::{Human, caused_human};

pub mod errors;
mod process_builder;
mod config;