Skip to main content

fst_reader/
lib.rs

1// Copyright 2023 The Regents of the University of California
2// Copyright 2024-2026 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    FstArrayType, FstEnumType, FstHierarchyEntry, FstPackType, FstScopeType, FstSignalHandle,
15    FstVarDirection, FstVarType, FstVhdlDataType, FstVhdlVarType,
16};