#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
mod daac;
mod trie;
mod types;
pub use daac::{DoubleArrayAhoCorasick, FindIter, OutputIter, State};
pub use trie::{Trie, TrieFindIter, TrieState};
pub use types::{Match, MatchKind, Output};