fst_native/
lib.rs

1// Copyright 2023 The Regents of the University of California
2// released under BSD 3-Clause License
3// author: Kevin Laeufer <laeufer@berkeley.edu>
4
5mod fastlz;
6mod io;
7mod reader;
8mod types;
9
10pub use io::ReaderError;
11pub use reader::{is_fst_file, FstFilter, FstHeader, FstReader, FstSignalValue};
12pub use types::{
13    FstHierarchyEntry, FstScopeType, FstSignalHandle, FstVarDirection, FstVarType, FstVhdlDataType,
14    FstVhdlVarType,
15};