iregexp 0.1.1

A checking implementation of I-Regexp
Documentation
  • Coverage
  • 12.5%
    4 out of 32 items documented1 out of 3 items with examples
  • Size
  • Source code size: 15.45 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.92 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 21s Average build duration of successful builds.
  • all releases: 21s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • jg-rp/rust-iregexp
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jg-rp

Rust I-Regexp Checker

Check regular expressions for compliance with RFC 9485.

use iregexp::check;

fn main() {
    println!("{:?}", check(r"[0-9]*?"));  // false
}