fst-reader 0.16.5

FST wavedump format reader implemented in safe Rust. Formerly known as fst-native.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2023 The Regents of the University of California
// Copyright 2024-2026 Cornell University
// released under BSD 3-Clause License
// author: Kevin Laeufer <laeufer@cornell.edu>

mod fastlz;
mod io;
mod reader;
mod types;

pub use io::ReaderError;
pub use reader::{FstFilter, FstHeader, FstReader, FstSignalValue, is_fst_file};
pub use types::{
    FstArrayType, FstEnumType, FstHierarchyEntry, FstPackType, FstScopeType, FstSignalHandle,
    FstVarDirection, FstVarType, FstVhdlDataType, FstVhdlVarType,
};