[dependencies]
[lib]
name = "lexit"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Lexical Analysis tool for defining a language and lexing it into tokens"
edition = "2024"
license = "MIT OR Apache-2.0"
name = "lexit"
readme = "README.md"
version = "0.1.0"
[[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"