fst_reader/
lib.rs

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