1
2
3
4
5
6
7
8
9
//! # Yaccas
//! **Y**et **A**nother **C**allback-orientated **C**ommand line pArSer is ... well, yet another command line parser.

#![deny(missing_docs, trivial_casts, trivial_numeric_casts,
unstable_features, unused_import_braces, unused_qualifications)]

pub mod arguments;
pub mod parser;
pub mod scanner;