Implement 6 optional enhancements for the wifi-Mat module: 1. Hardware Integration (csi_receiver.rs + hardware_adapter.rs) - ESP32 CSI support via serial/UDP - Intel 5300 BFEE file parsing - Atheros CSI Tool integration - Live UDP packet streaming - PCAP replay capability 2. CLI Commands (wifi-densepose-cli/src/mat.rs) - `wifi-mat scan` - Run disaster detection scan - `wifi-mat status` - Check event status - `wifi-mat zones` - Manage scan zones - `wifi-mat survivors` - List detected survivors - `wifi-mat alerts` - View and acknowledge alerts - `wifi-mat export` - Export data in various formats 3. REST API (wifi-densepose-mat/src/api/) - Full CRUD for disaster events - Zone management endpoints - Survivor and alert queries - WebSocket streaming for real-time updates - Comprehensive DTOs and error handling 4. WASM Build (wifi-densepose-wasm/src/mat.rs) - Browser-based disaster dashboard - Real-time survivor tracking - Zone visualization - Alert management - JavaScript API bindings 5. Detection Benchmarks (benches/detection_bench.rs) - Single survivor detection - Multi-survivor detection - Full pipeline benchmarks - Signal processing benchmarks - Hardware adapter benchmarks 6. ML Models for Debris Penetration (ml/) - DebrisModel for material analysis - VitalSignsClassifier for triage - FFT-based feature extraction - Bandpass filtering - Monte Carlo dropout for uncertainty All 134 unit tests pass. Compilation verified for: - wifi-densepose-mat - wifi-densepose-cli - wifi-densepose-wasm (with mat feature)
73 lines
1.7 KiB
TOML
73 lines
1.7 KiB
TOML
[package]
|
|
name = "wifi-densepose-mat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["WiFi-DensePose Team"]
|
|
description = "Mass Casualty Assessment Tool - WiFi-based disaster survivor detection"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/ruvnet/wifi-densepose"
|
|
keywords = ["wifi", "disaster", "rescue", "detection", "vital-signs"]
|
|
categories = ["science", "algorithms"]
|
|
|
|
[features]
|
|
default = ["std", "api"]
|
|
std = []
|
|
api = ["dep:serde", "chrono/serde", "geo/use-serde"]
|
|
portable = ["low-power"]
|
|
low-power = []
|
|
distributed = ["tokio/sync"]
|
|
drone = ["distributed"]
|
|
serde = ["dep:serde", "chrono/serde", "geo/use-serde"]
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
wifi-densepose-core = { path = "../wifi-densepose-core" }
|
|
wifi-densepose-signal = { path = "../wifi-densepose-signal" }
|
|
wifi-densepose-nn = { path = "../wifi-densepose-nn" }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.35", features = ["rt", "sync", "time"] }
|
|
async-trait = "0.1"
|
|
|
|
# Web framework (REST API)
|
|
axum = { version = "0.7", features = ["ws"] }
|
|
futures-util = "0.3"
|
|
|
|
# Error handling
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
serde_json = "1.0"
|
|
|
|
# Time handling
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Math and signal processing
|
|
num-complex = "0.4"
|
|
ndarray = "0.15"
|
|
rustfft = "6.1"
|
|
|
|
# Utilities
|
|
uuid = { version = "1.6", features = ["v4", "serde"] }
|
|
tracing = "0.1"
|
|
parking_lot = "0.12"
|
|
|
|
# Geo calculations
|
|
geo = "0.27"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
proptest = "1.4"
|
|
approx = "0.5"
|
|
|
|
[[bench]]
|
|
name = "detection_bench"
|
|
harness = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|