arg_parse 0.3.0

A tool to parse console or your own arguments, without dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
#[test]
fn main() {
    use arg_parse::{ArgParser, config};
    let _ = {
        let short_options = &[];
        let long_options = &[];
        let config = config::Config::from(short_options, long_options, &[]);
        ArgParser::from(config)
    };
}