[lib]
name = "deterministic_automata"
path = "src/lib.rs"
[package]
authors = ["Kazuya Haine <kazuyahaine@icloud.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "parsing"]
description = "A framework for implementing deterministic and mutation automata with arbitrary state complexity"
documentation = "https://docs.rs/deterministic_automata"
edition = "2024"
keywords = ["automata", "state-machine", "parser", "regex", "language"]
license = "MIT"
name = "deterministic_automata"
readme = "README.md"
repository = "https://github.com/HaineSensei/deterministic_automata"
version = "0.1.8"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[[test]]
name = "counter_automaton_tests"
path = "tests/counter_automaton_tests.rs"
[[test]]
name = "dynamic_automaton_tests"
path = "tests/dynamic_automaton_tests.rs"
[[test]]
name = "either_automaton_tests"
path = "tests/either_automaton_tests.rs"
[[test]]
name = "error_handling_tests"
path = "tests/error_handling_tests.rs"
[[test]]
name = "mutation_automaton_tests"
path = "tests/mutation_automaton_tests.rs"
[[test]]
name = "mutation_either_automaton_tests"
path = "tests/mutation_either_automaton_tests.rs"
[[test]]
name = "mutation_product_automaton_tests"
path = "tests/mutation_product_automaton_tests.rs"
[[test]]
name = "product_automaton_tests"
path = "tests/product_automaton_tests.rs"