5 releases (3 breaking)

0.9.0 Oct 8, 2024
0.8.1 Oct 3, 2024
0.7.0 Jul 4, 2023
0.5.0 Jul 3, 2023
0.1.0 Jul 1, 2023

#102 in Procedural macros

Download history 77/week @ 2024-11-20 151/week @ 2024-11-27 130/week @ 2024-12-04 199/week @ 2024-12-11 161/week @ 2024-12-18 257/week @ 2024-12-25 459/week @ 2025-01-01 227/week @ 2025-01-08 291/week @ 2025-01-15 536/week @ 2025-01-22 417/week @ 2025-01-29 541/week @ 2025-02-05 670/week @ 2025-02-12 663/week @ 2025-02-19 743/week @ 2025-02-26 500/week @ 2025-03-05

2,658 downloads per month
Used in 12 crates (5 directly)

MIT license

8KB
158 lines

quote2

An alternative lightweight version of quote.

Crates.io Documentation License: MIT

Features

  • Very lightweight and produces extremely lean, minimal code compare to quote

  • Unlike quote, quote2 allows direct mutation of tokens without creating new TokenStream instances, enhancing runtime performance.

    similar to write macro.

Example

Add it as a dependency to your Rust project by adding the following line to your Cargo.toml file:

[dependencies]
quote2 = "0.9"
use quote2::{proc_macro2::TokenStream, quote, Quote};

let body = quote(|t| {
    for n in 1..7 {
        if n % 2 == 0 {
            quote!(t, {
                println!("{}", #n);
            });
        }
    }
});

let mut t = TokenStream::new();
quote!(t, {
    fn main() {
        #body
    }
});

Generated code:

fn main() {
    println!("{}", 2i32);
    println!("{}", 4i32);
    println!("{}", 6i32);
}

Dependencies

~73KB