gerber/lib.rs
1#![warn(missing_docs)]
2#![allow(incomplete_features)]
3#![feature(generic_const_exprs)]
4
5//! A simple DFA library to construct state machines, fast allocation using an a custom Arena implementation, and safe construction using Rust's borrow checker.
6
7/// The DFA module contains the implementation of the Deterministic Finite Automaton.
8pub mod dfa;
9/// The NFA module contains the implementation of the Non-Deterministic Finite Automaton.
10pub mod nfa;