# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "alkale" version = "1.0.3" authors = ["Ashli Katt "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ A simple LL(1) tokenizer library for Rust. """ readme = "README.md" keywords = [ "token", "tokenizer", "lexer", ] license = "MIT" repository = "https://codeberg.org/AshliKatt/Alkale" [lib] name = "alkale" path = "src/lib.rs" [[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" [[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" [dependencies.num-traits] version = "0.2.19" [dependencies.utf8-chars] version = "3.0.3"