1//! Parser module for fuzzy regex patterns.
2//!
3//! This module provides the lexer and parser for converting
4//! fuzzy regex pattern strings into an AST.
56pub mod ast;
7mod core;
8pub mod lexer;
910pub use ast::*;
11pub use core::{ParseResult, parse, parse_with_flags};