rustfst 0.5.0

Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Documentation
#[macro_use]
mod macros;
mod allocable_fst;
mod expanded_fst;
mod final_states_iterator;
mod fst;
mod iterators;
mod mutable_fst;
mod paths_iterator;
mod serializable_fst;

pub use self::allocable_fst::AllocableFst;
pub use self::expanded_fst::ExpandedFst;
pub use self::final_states_iterator::FinalStatesIterator;
pub use self::fst::{CoreFst, Fst};
pub use self::iterators::{ArcIterator, FstIterator, FstIteratorMut, StateIterator};
pub use self::mutable_fst::{MutableArcIterator, MutableFst};
pub use self::paths_iterator::PathsIterator;
pub use self::serializable_fst::SerializableFst;