wavepeek 0.5.0

Command-line tool for RTL waveform inspection with deterministic machine-friendly output.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod cli;
mod docs;
mod engine;
mod error;
mod output;
mod schema_contract;
mod waveform;

pub mod expr;

pub use crate::error::WavepeekError;

pub fn run_cli() -> Result<(), crate::error::WavepeekError> {
    cli::run()
}