[package]
edition = "2024"
rust-version = "1.85.0"
name = "automata_core"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic and nondeterministic automata algorithms in Rust"
homepage = "https://github.com/maxvog2020/rust_automata"
readme = "README.md"
keywords = [
"automata",
"dfa",
"nfa",
"formal-languages",
"algorithms",
]
categories = ["algorithms"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/maxvog2020/rust_automata"
[lib]
name = "automata_core"
path = "src/lib.rs"
[[test]]
name = "finite_parsing"
path = "tests/finite_parsing.rs"
[[test]]
name = "simple_dfa"
path = "tests/simple_dfa.rs"
[[test]]
name = "simple_ldfa"
path = "tests/simple_ldfa.rs"
[[test]]
name = "simple_nfa"
path = "tests/simple_nfa.rs"
[[bench]]
name = "finite_parsing"
path = "benches/finite_parsing.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]