lexit 0.1.3

A Lexical Analysis tool for defining a language and lexing it into tokens
Documentation
[dependencies]

[lib]
name = "lexit"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compilers", "parsing"]
description = "A Lexical Analysis tool for defining a language and lexing it into tokens"
edition = "2024"
keywords = ["parser", "lexer", "compiler"]
license = "MIT OR Apache-2.0"
name = "lexit"
readme = "README.md"
repository = "https://github.com/CBepler/lexit"
version = "0.1.3"

[[test]]
name = "arithmetic_expression"
path = "tests/arithmetic_expression.rs"

[[test]]
name = "c_like"
path = "tests/c_like.rs"

[[test]]
name = "json_like"
path = "tests/json_like.rs"

[[test]]
name = "no_macro"
path = "tests/no_macro.rs"

[[test]]
name = "unicode_language"
path = "tests/unicode_language.rs"

[[test]]
name = "verilog_subset"
path = "tests/verilog_subset.rs"