| Crates.io | commandlines |
| lib.rs | commandlines |
| version | 0.8.0 |
| created_at | 2018-11-05 22:29:50.35466+00 |
| updated_at | 2018-11-29 18:13:26.549427+00 |
| description | A command line argument parsing library for Rust |
| homepage | |
| repository | https://github.com/chrissimpkins/commandlines-rust |
| max_upload_size | |
| id | 94906 |
| size | 81,915 |
commandlines is a command line argument parsing library for Rust command line interface application development. The goal is to support most POSIX/GNU program argument syntax conventions.
The project is in development and the library API is not stable. Please see the developer documentation at https://docs.rs/commandlines.
-)-- terminates all options; any following arguments are treated as non-option arguments, even if they begin with a hyphen-- followed by a name made of alphanumeric characters and dashes. Option names are typically one to three words long, with hyphens to separate words-abc is equivalent to -a -b -c