jargon_args/lib.rs
1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3
4/*!
5# Jargon
6
7Jargon is a simple command line handler for Rust. Using a similar architecture to
8[pico-args](https://github.com/RazrFalcon/pico-args), but *working* to be cleaner
9and have more options — while being usable, unlike [clap](https://github.com/clap-rs/clap).
10
11Jargon is aimed to create the least amount of handler code in a program but giving options
12to handle any type of argument, including ones that don't start with `-` & subcommands.
13
14## Examples
15
16See [examples](examples/)
17*/
18
19mod error;
20mod jargons;
21mod keys;
22
23pub use error::*;
24pub use jargons::*;
25pub use keys::*;
26
27#[cfg(test)]
28mod tests;