mirror of
https://github.com/ruvnet/RuView
synced 2026-07-19 16:53:18 +00:00
afc86c6fc4
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.69 to 2.0.18. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.69...2.0.18) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57 lines
1.6 KiB
TOML
57 lines
1.6 KiB
TOML
[package]
|
|
name = "wifi-densepose-hardware"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Hardware interface abstractions for WiFi CSI sensors (ESP32, Intel 5300, Atheros)"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["rUv <ruv@ruv.net>", "WiFi-DensePose Contributors"]
|
|
repository = "https://github.com/ruvnet/wifi-densepose"
|
|
documentation = "https://docs.rs/wifi-densepose-hardware"
|
|
keywords = ["wifi", "esp32", "csi", "hardware", "sensor"]
|
|
categories = ["hardware-support", "science"]
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
# Enable ESP32 serial parsing (no actual ESP-IDF dependency; parses streamed bytes)
|
|
esp32 = []
|
|
# Enable Intel 5300 CSI Tool log parsing
|
|
intel5300 = []
|
|
# Enable Linux WiFi interface for commodity sensing (ADR-013)
|
|
linux-wifi = []
|
|
|
|
[dependencies]
|
|
# CLI argument parsing (for bin/aggregator)
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
# Cryptographic HMAC (ADR-050: replace fake XOR-fold HMAC)
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
# Byte parsing
|
|
byteorder = "1.5"
|
|
# Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
# Error handling
|
|
thiserror = "2.0"
|
|
# Logging
|
|
tracing = "0.1"
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# QUIC transport (ADR-032a)
|
|
midstreamer-quic = { workspace = true }
|
|
# Real-time TDM scheduling (ADR-032a)
|
|
midstreamer-scheduler = { workspace = true }
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
tokio = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "transport_bench"
|
|
harness = false
|