- Add detailed wifi-Mat user guide covering: - Installation and setup - Detection capabilities (breathing, heartbeat, movement) - Localization system (triangulation, depth estimation) - START protocol triage classification - Alert system with priority escalation - Field deployment guide - Hardware setup requirements - API reference and troubleshooting - Update main README.md with wifi-Mat section and links - Fix compilation issues: - Add missing deadline field in AlertPayload - Fix type ambiguity in powi calls - Resolve borrow checker issues in scan_cycle - Export CsiDataBuffer from detection module - Add missing imports in test modules - All 83 tests now passing
64 lines
1.5 KiB
TOML
64 lines
1.5 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"]
|
|
std = []
|
|
portable = ["low-power"]
|
|
low-power = []
|
|
distributed = ["tokio/sync"]
|
|
drone = ["distributed"]
|
|
serde = ["dep:serde", "chrono/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"
|
|
|
|
# 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"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|