28 lines
790 B
TOML
28 lines
790 B
TOML
[package]
|
|
name = "rvcsi-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "rvCSI command-line tool — inspect, replay, stream, events, health, calibrate, export (ADR-095 FR7)"
|
|
repository.workspace = true
|
|
keywords = ["wifi", "csi", "cli", "rvcsi"]
|
|
categories = ["science", "command-line-utilities"]
|
|
|
|
[[bin]]
|
|
name = "rvcsi"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
rvcsi-core = { path = "../rvcsi-core" }
|
|
rvcsi-adapter-file = { path = "../rvcsi-adapter-file" }
|
|
rvcsi-adapter-nexmon = { path = "../rvcsi-adapter-nexmon" }
|
|
rvcsi-runtime = { path = "../rvcsi-runtime" }
|
|
clap = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|