Protocol probe: connects to server, reports capabilities, channels, clients. Audio test: DSP pipeline benchmark with configurable params.
16 lines
251 B
TOML
16 lines
251 B
TOML
[package]
|
|
name = "audio-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "audio-test"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|