[dependencies.num-traits]
version = "0.2.19"
[dependencies.utf8-chars]
version = "3.0.3"
[[example]]
name = "brainfuck"
path = "examples/brainfuck.rs"
[[example]]
name = "expression"
path = "examples/expression.rs"
[[example]]
name = "file"
path = "examples/file/main.rs"
[[example]]
name = "foreach"
path = "examples/foreach.rs"
[[example]]
name = "iterator"
path = "examples/iterator.rs"
[[example]]
name = "json"
path = "examples/json.rs"
[lib]
name = "alkale"
path = "src/lib.rs"
[package]
authors = ["Ashli Katt <ashlikatt.public@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = """
A simple LL(1) tokenizer library for Rust.
"""
edition = "2021"
keywords = ["token", "tokenizer", "lexer"]
license = "MIT"
name = "alkale"
readme = "README.md"
repository = "https://codeberg.org/AshliKatt/Alkale"
version = "1.0.3"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "core"
path = "tests/core.rs"
[[test]]
name = "identifier"
path = "tests/identifier.rs"
[[test]]
name = "numeric"
path = "tests/numeric.rs"
[[test]]
name = "string"
path = "tests/string.rs"
[[test]]
name = "structure"
path = "tests/structure.rs"