Proc-macro-regex version 1.0.0

Hey Rustaceans,
I am pleased to announce my new crate. It is proc-macro regex library to match an arbitrary string or byte array to regular expression. The following advantages and disadvantages of the crate compared to the regex crate.

Advantages:

  • Compile-time (no runtime initialization, no lazy-static)
  • Generated code that does not contain any dependencies
  • No heap allocation
  • Approximately 12%-68% faster for no trivia regex (see REAME.md)

Disadvantages:

  • Currently, no group captures
  • No runtime regex generation

What do you think?
Thank you for your attention.

2 Likes

Why the jump straight to 1.0?

1 Like

I also start at v1.0.0. There is no specific reason.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.