mingling 0.1.8

A Rust CLI framework for many subcmds & complex workflows, reduces boilerplate via proc macros, focus on biz logic
Documentation
1
2
3
4
5
6
7
8
9
10
mod args;
pub use crate::parser::args::*;

mod picker;
pub use crate::parser::picker::*;

pub use crate::parser::picker::bools::*;

#[cfg(test)]
mod test;