[package]
edition = "2024"
rust-version = "1.93"
name = "wavepeek"
version = "0.3.0"
authors = ["esynr3z"]
build = false
exclude = [
".devcontainer/*",
".github/*",
".opencode/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for RTL waveform inspection with deterministic machine-friendly output."
homepage = "https://github.com/kleverhq/wavepeek"
documentation = "https://docs.rs/wavepeek"
readme = "README.md"
keywords = [
"rtl",
"waveform",
"vcd",
"fst",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/kleverhq/wavepeek"
[[bin]]
name = "wavepeek"
path = "src/main.rs"
[[test]]
name = "change_cli"
path = "tests/change_cli.rs"
[[test]]
name = "change_opt_equivalence"
path = "tests/change_opt_equivalence.rs"
[[test]]
name = "change_vcd_fst_parity"
path = "tests/change_vcd_fst_parity.rs"
[[test]]
name = "cli_contract"
path = "tests/cli_contract.rs"
[[test]]
name = "info_cli"
path = "tests/info_cli.rs"
[[test]]
name = "property_cli"
path = "tests/property_cli.rs"
[[test]]
name = "schema_cli"
path = "tests/schema_cli.rs"
[[test]]
name = "scope_cli"
path = "tests/scope_cli.rs"
[[test]]
name = "signal_cli"
path = "tests/signal_cli.rs"
[[test]]
name = "value_cli"
path = "tests/value_cli.rs"
[dependencies.clap]
version = "~4"
features = ["derive"]
[dependencies.regex]
version = "~1"
[dependencies.serde]
version = "~1"
features = ["derive"]
[dependencies.serde_json]
version = "~1"
[dependencies.thiserror]
version = "~2"
[dependencies.wellen]
version = "~0.20"
[dev-dependencies.assert_cmd]
version = "~2"
[dev-dependencies.predicates]
version = "~3"
[dev-dependencies.tempfile]
version = "~3"