Integrate midstreamer ecosystem for QUIC-secured mesh transport and advanced signal analysis: QUIC Transport (hardware crate): - quic_transport.rs: SecurityMode (ManualCrypto/QuicTransport), FramedMessage wire format, connection management, fallback support (856 lines, 30 tests) - secure_tdm.rs: ReplayWindow, AuthenticatedBeacon (28-byte HMAC format), SecureTdmCoordinator with dual-mode security (994 lines, 20 tests) - transport_bench.rs: Criterion benchmarks (plain vs authenticated vs QUIC) Signal Analysis (signal crate): - temporal_gesture.rs: DTW/LCS/EditDistance gesture matching via midstreamer-temporal-compare, quantized feature comparison (517 lines, 13 tests) - attractor_drift.rs: Takens' theorem phase-space embedding, Lyapunov exponent classification (Stable/Periodic/Chaotic) via midstreamer-attractor (573 lines, 13 tests) ADR-032 updated with Section 6: QUIC Transport Layer (ADR-032a) README updated with CRV signal-line section, badge 1100+, ADR count 33 Dependencies: midstreamer-quic 0.1.0, midstreamer-scheduler 0.1.0, midstreamer-temporal-compare 0.1.0, midstreamer-attractor 0.1.0 Total: 3,136 new lines, 76 tests, 6 benchmarks Co-Authored-By: claude-flow <ruv@ruv.net>
54 lines
1.5 KiB
TOML
54 lines
1.5 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"] }
|
|
# Byte parsing
|
|
byteorder = "1.5"
|
|
# Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
# Error handling
|
|
thiserror = "1.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
|