automata_core 0.2.1

Deterministic and nondeterministic automata algorithms in Rust
Documentation
# 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 = "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"]