lex-just-parse 0.3.0

lex-just-parse is a simple and easy-to-use lexing and parsing crate for Rust. It provides a fast, stream-based lexical analyzer (Lexer) and combinator-style parser utilities (Parser) to assist in developing custom programming languages, DSLs, or handling structured text parsing needs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # lex-just-parse
//!
//! `lex-just-parse` is a simple and easy-to-use lexing and parsing crate for Rust.
//! It provides a fast, stream-based lexical analyzer (`Lexer`) and a combinator-style parser (`Parser`)
//! to assist in developing custom languages, DSLs, or any structured text parsing needs.
//!
//! ## Overview
//!
//! - **[`lexer`]**: Contains the `Lexer` and token definitions for tokenizing string inputs.
//! - **[`parser`]**: Contains the `Parser` utilities for building ASTs.

pub mod lexer;
pub mod parser;