mini_paste-0.1.11 doesn't have any documentation.
::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
::pastedoes:When in doubt, do use
::pasteinstead.- Only use
::mini_pastewhen the compile-from-scratch time matters to you.
- Only use
Seamlessly replacing ::paste with ::mini_paste
You can achieve that with the following line in your Cargo.toml:
[]
= { = "0.1.0", = "mini_paste" }
This will mock / shadow ::paste so that all the ::paste::item! and
::paste::expr! macro calls Just Work.