regex-anre 2.0.0

Regex-anre is a full-featured, zero-dependency regular expression engine that supports both standard and ANRE regular expressions.
Documentation
// Copyright (c) 2025 Hemashushu <hippospark@gmail.com>, All rights reserved.
//
// This Source Code Form is subject to the terms of
// the Mozilla Public License version 2.0 and additional exceptions.
// For more details, see the LICENSE, LICENSE.additional, and CONTRIBUTING files.

mod anre;
mod ast;
mod char_with_position;
mod error;
mod error_printer;
mod peekable_iter;
mod position;
mod range;
mod traditional;
mod compiler;
mod transition;
mod match_length_calculator;

pub mod utf8_codepoint_reader;
pub mod runtime_context;
pub mod object_file;
pub mod process;
pub mod regex;

pub use regex::Regex;