regex-anre 1.1.0

regex-anre is a brand new and full-featured regex engine for Rust with JIT and ANRE language support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2024 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,
// more details in file LICENSE, LICENSE.additional and CONTRIBUTING.

mod commentremover;
mod lexer;
mod macroexpander;
mod normalizer;
mod parser;
mod token;

pub use parser::parse_from_str;