Skip to main content

tiny_regex/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#![no_std]
4
5mod api;
6pub mod raw;
7
8pub use api::{Match, Matches, Regex, RegexBuf, TinyRegex, DEFAULT_CCL, DEFAULT_MEMO, DEFAULT_NODES};
9
10