2 releases (1 stable)

1.0.0 May 6, 2019
0.0.0 Mar 6, 2019

#48 in #cli-parser

Download history 3955/week @ 2023-11-19 5874/week @ 2023-11-26 5585/week @ 2023-12-03 7352/week @ 2023-12-10 4808/week @ 2023-12-17 1941/week @ 2023-12-24 4235/week @ 2023-12-31 6506/week @ 2024-01-07 4834/week @ 2024-01-14 7067/week @ 2024-01-21 6546/week @ 2024-01-28 8239/week @ 2024-02-04 9941/week @ 2024-02-11 6566/week @ 2024-02-18 8232/week @ 2024-02-25 10002/week @ 2024-03-03

34,867 downloads per month
Used in fewer than 51 crates

MIT/Apache

18KB
129 lines

paw

crates.io version build status downloads docs.rs docs

Command line argument paw-rser abstraction for main.

Paw's goal is to show that C's idea of passing arguments into main wasn't that bad at all, but just needed a bit of oxidation to make it work with Rust.

Paw defines a trait, a proc macro, and an example implementation that when combined allow you to pass fully parsed arguments to main. Gone is the need to remember which methods to call in order to parse arguments in the CLI. Instead paw makes command line parsing feel first-class

Examples

#[paw::main]
fn main(args: paw::Args) {
    for arg in args {
        println!("{:?}", arg);
    }
}

More Examples

Installation

$ cargo add paw

Safety

This crate uses #![deny(unsafe_code)] to ensure everything is implemented in 100% Safe Rust.

Contributing

Want to join us? Check out our "Contributing" guide and take a look at some of these issues:

FAQ

How does paw work?

The paw::main attribute allows fn main to take any argument that implements the paw::ParseArgs trait. paw::ParseArgs implements one method: parse_args which returns a Result<Self>.

Any errors that are generated are returned back from fn main, and the returned Result type is in control of how to print them.

What is the relationship to C?

In C's runtime, arguments command line arguments are passed as a combination of "number of arguments" (argc), and a "list of arguments" (argv):

int main(int argc, char **argv) {
    for(i = 1; i < argc; i++) {
        printf("%s",argv[i]);
    }
    return 0;
}

In Rust this would translate to an iterator of arguments, which is what std::env::Args provides, which is wrapped in paw through paw::Args.

What's the future for paw?

Paw is an experiment by the CLI WG to provide a better command line experience for everyone. Our hypothesis is that by moving command line parsing to fn main Rust's command line experience can become more intuitive and easy to use.

We hope to gather feedback how this works for people, and see how we can integrate with existing libraries. This will take time, and we might change things in the process.

If this experiment proves to be successful, we might move to formalize the features Paw provide into Rust itself through the RFC process. But that's not the case yet, so for now: we hope you enjoy Paw, and we'd love to hear your about your experiences using it!

License

MIT OR Apache-2.0

Dependencies

~1.5MB
~33K SLoC