fst_reader/lib.rs
// Copyright 2023 The Regents of the University of California
// released under BSD 3-Clause License
// author: Kevin Laeufer <laeufer@berkeley.edu>
mod fastlz;
mod io;
mod reader;
mod types;
pub use io::ReaderError;
pub use reader::{is_fst_file, FstFilter, FstHeader, FstReader, FstSignalValue};
pub use types::{
FstHierarchyEntry, FstScopeType, FstSignalHandle, FstVarDirection, FstVarType, FstVhdlDataType,
FstVhdlVarType,
};