Gumdrop

Derive-based Argument Parser

Gumdrop is a minimal argument parser for Rust that uses derive macros to minimize boilerplate code.

Features:

Usage:

#[derive(Debug, Options)]
struct Options {
    #[options(help = "Print help message")]
    help: bool,
}
Back to Framework List