wavepeek 2.1.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
use clap::Args;

#[derive(Debug, Args)]
pub struct SchemaArgs {
    /// Print the JSONL stream record schema instead of the JSON envelope schema
    #[arg(long, conflicts_with = "input", help_heading = "Selection options")]
    pub stream: bool,
    /// Print the JSON input document schema instead of the JSON envelope schema
    #[arg(long, conflicts_with = "stream", help_heading = "Selection options")]
    pub input: bool,
}