Skip to content

Easy to use argument parsing library for Rust that provides pretty help printing

License

Notifications You must be signed in to change notification settings

zmarcantel/rags

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rags

docs.rs/rags-rs Build Status

rags is an easy to use argument parsing library for Rust that provides pretty help-printing.

For consistency, this README is kept lean. See the documentation for up-to-date documentation. You may also look at the examples contained in this repo.

rags allows defining arguments in the same tree-like manner that users and developers expect. This leads to efficient parsing as we can efficiently eliminate work based on the state of the parsing. Once an argument has been matched it will never be inspected again.

usage

This crate is available from crates.io:

# Cargo.toml
[dependencies]
rags-rs = "^0.1.3"

Your application then can create a parser, define your args, and keep on going:

extern crate rags_rs as rags;

fn main() {
    let mut parser = rags::Parser::from_args();
    ...
    ...
}

About

Easy to use argument parsing library for Rust that provides pretty help printing

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages