5 releases

0.2.0 Apr 12, 2024
0.2.0-alpha.1 Jan 15, 2024
0.1.5 Aug 9, 2021
0.1.4 Aug 9, 2021
0.1.0 Aug 8, 2021

#95 in #optional

Download history 8/week @ 2024-02-12 11/week @ 2024-02-19 67/week @ 2024-02-26 23/week @ 2024-03-04 26/week @ 2024-03-11 20/week @ 2024-03-18 27/week @ 2024-03-25 44/week @ 2024-04-01 87/week @ 2024-04-08 24/week @ 2024-04-15 24/week @ 2024-04-22 23/week @ 2024-04-29 19/week @ 2024-05-06 21/week @ 2024-05-13 34/week @ 2024-05-20 26/week @ 2024-05-27

100 downloads per month
Used in 4 crates (via proc-macro-kwargs)

MIT license

15KB
300 lines

proc-macro-kwargs

Keyword argument parsing for function-like procedural macros (Rust).

Example

example_macro!(
    name => bar,
    foo => i32
);

And here is the corresponding code in the proc macro:

#[derive(MacroKeywordArgs)]
struct MacroArgs {
    name: Ident,
    #[kwarg(optional)]
    optional: Option<syn::Expr>,
    #[kwarg(rename = "foo")
    tp: Type
}

See the tests for more detailed examples

Dependencies

~0.4–0.8MB
~19K SLoC