2 releases

0.1.11 Apr 21, 2020
0.1.10 Apr 21, 2020

#6 in #replacing

Download history 310/week @ 2024-11-15 161/week @ 2024-11-22 124/week @ 2024-11-29 185/week @ 2024-12-06 182/week @ 2024-12-13 42/week @ 2024-12-20 12/week @ 2024-12-27 102/week @ 2025-01-03 130/week @ 2025-01-10 130/week @ 2025-01-17 116/week @ 2025-01-24 214/week @ 2025-01-31 213/week @ 2025-02-07 240/week @ 2025-02-14 151/week @ 2025-02-21 128/week @ 2025-02-28

774 downloads per month

Zlib license

5KB
51 lines

::mini_paste

Like ::paste (MIT / Apache licensed), but without any dependency on ::syn nor ::quote, for (significantly) fast(er) compile-from-scratch times.

  • It does not, however, currently offer the fancier features of case conversion that ::paste does:

    When in doubt, do use ::paste instead.

    • Only use ::mini_paste when the compile-from-scratch time matters to you.

Seamlessly replacing ::paste with ::mini_paste

You can achieve that with the following line in your Cargo.toml:

[dependencies]
paste = { version = "0.1.0", package = "mini_paste" }

This will mock / shadow ::paste so that all the ::paste::item! and ::paste::expr! macro calls Just Work.

Dependencies