Full implementation of Project AETHER — Contrastive CSI Embedding Model. ## Phases Delivered 1. ProjectionHead (64→128→128) + L2 normalization 2. CsiAugmenter (5 physically-motivated augmentations) 3. InfoNCE contrastive loss + SimCLR pretraining 4. FingerprintIndex (4 index types: env, activity, temporal, person) 5. RVF SEG_EMBED (0x0C) + CLI integration 6. Cross-modal alignment (PoseEncoder + InfoNCE) 7. Deep RuVector: MicroLoRA, EWC++, drift detection, hard-negative mining, SEG_LORA ## Stats - 276 tests passing (191 lib + 51 bin + 16 rvf + 18 vitals) - 3,342 additions across 8 files - Zero unsafe/unwrap/panic/todo stubs - ~55KB INT8 model for ESP32 edge deployment Also fixes deprecated GitHub Actions (v3→v4) and adds feat/* branch CI triggers. Closes #50
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "wifi-densepose-wifiscan"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Multi-BSSID WiFi scanning domain layer for enhanced Windows WiFi DensePose sensing (ADR-022)"
|
|
license.workspace = true
|
|
authors = ["rUv <ruv@ruv.net>", "WiFi-DensePose Contributors"]
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/wifi-densepose-wifiscan"
|
|
keywords = ["wifi", "bssid", "scanning", "windows", "sensing"]
|
|
categories = ["science", "computer-vision"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
# Logging
|
|
tracing.workspace = true
|
|
|
|
# Serialization (optional, for domain types)
|
|
serde = { workspace = true, optional = true }
|
|
|
|
# Async runtime (optional, for Tier 2 async scanning)
|
|
tokio = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = ["serde", "pipeline"]
|
|
serde = ["dep:serde"]
|
|
pipeline = []
|
|
## Tier 2: enables async scan_async() method on WlanApiScanner via tokio
|
|
wlanapi = ["dep:tokio"]
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[lints.clippy]
|
|
all = "warn"
|
|
pedantic = "warn"
|
|
doc_markdown = "allow"
|
|
module_name_repetitions = "allow"
|
|
must_use_candidate = "allow"
|
|
missing_errors_doc = "allow"
|
|
missing_panics_doc = "allow"
|
|
cast_precision_loss = "allow"
|
|
cast_lossless = "allow"
|
|
many_single_char_names = "allow"
|
|
uninlined_format_args = "allow"
|
|
assigning_clones = "allow"
|