fuzzy-regex 0.1.0

High-performance fuzzy regular expression engine combining regex with Damerau-Levenshtein distance
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Parser module for fuzzy regex patterns.
//!
//! This module provides the lexer and parser for converting
//! fuzzy regex pattern strings into an AST.

pub mod ast;
mod core;
pub mod lexer;

pub use ast::*;
pub use core::{ParseResult, parse, parse_with_flags};