[package]
edition = "2021"
rust-version = "1.85"
name = "wavetools"
version = "0.1.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tools for digital simulation waveform analysis -- read, filter, and diff FST and VCD files"
readme = "README.md"
keywords = [
"waveform",
"fst",
"vcd",
"eda",
"simulation",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://github.com/hudson-trading/wavetools"
[lib]
name = "wavetools"
path = "src/lib.rs"
[[bin]]
name = "wavecat"
path = "src/bin/wavecat.rs"
[[bin]]
name = "wavediff"
path = "src/bin/wavediff.rs"
[[test]]
name = "attr_tests"
path = "tests/attr_tests.rs"
[[test]]
name = "cat_option_tests"
path = "tests/cat_option_tests.rs"
[[test]]
name = "cat_tests"
path = "tests/cat_tests.rs"
harness = false
[[test]]
name = "diff_test"
path = "tests/diff_test.rs"
[[test]]
name = "set_tests"
path = "tests/set_tests.rs"
[[test]]
name = "source_test"
path = "tests/source_test.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.fst-reader]
version = "0.16.5"
[dependencies.glob]
version = "0.3"
[dev-dependencies.datatest-stable]
version = "0.3"