[package]
edition = "2024"
name = "lex-just-parse"
version = "0.3.0"
authors = ["Marcos V. Andrade Almeida"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "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."
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/MarcosAndradeV/lex-just-parse/"
[features]
interning = []
[lib]
name = "lex_just_parse"
path = "src/lib.rs"
[dependencies]