scalp 0.1.1

A declarative, macro-less parsing library for command-line interfaces. It provides a highly composable and extensible `Parse` trait that ensures comparative performance to a macro-full approach while offering greater flexibility and understandability.
Documentation
1
2
3
4
5
6
7
extern crate skeptic;

use skeptic::*;

fn main() {
    generate_doc_tests(&["README.md"]);
}