7 releases (breaking)

0.11.0 Nov 9, 2023
0.10.0 Mar 23, 2023
0.9.0 Jan 14, 2023
0.8.0 Dec 12, 2022
0.5.0 Jul 4, 2022

#1053 in Text processing

Download history 1/week @ 2024-02-01 46/week @ 2024-02-22 53/week @ 2024-02-29 28/week @ 2024-03-07 31/week @ 2024-03-14 67/week @ 2024-03-21 59/week @ 2024-03-28

188 downloads per month
Used in 5 crates

MIT/Apache

185KB
4K SLoC

pomsky-macro

This Rust procedural macro allows converting a pomsky expression to a regex string literal at compile time:

use pomsky_macro::pomsky;

const REGEX: &str = pomsky!("foo" | "bar"+ greedy);

This string can then used with the regex crate:

let my_regex = regex::Regex::new(REGEX).unwrap();

Diagnostics

Errors from pomsky are shown at compile time and are highlighted in your IDE. You can improve the diagnostics by enabling the diagnostics feature, which requires Rust Nightly.

Regex flavor

If you want to use a regex flavor other than Rust, you can specify it after a hashtag:

const REGEX: &str = pomsky!(
    #flavor = Pcre
    >> "test" %
);

License

Dual-licensed under the MIT license or the Apache 2.0 license.


lib.rs:

This crate provides the pomsky! macro to compile pomsky expressions at compile time.

Dependencies

~140KB