docs(user-guide): add wifi-densepose-sar, fix stale crate-version claim

The crates.io section claimed "All 16 crates are published at v0.3.0" --
stale even before this session (crates publish independently and had
already drifted to 0.3.1-0.3.6). Replaced with an accurate framing
(cargo add resolves each to its own latest) and added the new
wifi-densepose-sar crate (ADR-287) to the list.
This commit is contained in:
ruv
2026-07-31 00:39:10 -04:00
parent e4695d8c68
commit bddc212c17
+6 -1
View File
@@ -135,7 +135,7 @@ The compiled binary is at `target/release/sensing-server`.
### From crates.io (Individual Crates) ### From crates.io (Individual Crates)
All 16 crates are published to crates.io at v0.3.0. Add individual crates to your own Rust project: The workspace's crates publish independently, so versions vary crate to crate (`wifi-densepose-core` is at 0.3.2, `wifi-densepose-signal` at 0.3.6, etc. as of this writing) — `cargo add` resolves each to its own latest by default, so you don't need to track exact numbers yourself. Add individual crates to your own Rust project:
```bash ```bash
# Core types and traits # Core types and traits
@@ -161,6 +161,11 @@ cargo add wifi-densepose-wasm
# WASM edge runtime (lightweight, for embedded/IoT) # WASM edge runtime (lightweight, for embedded/IoT)
cargo add wifi-densepose-wasm-edge cargo add wifi-densepose-wasm-edge
# Coherent wideband RF tomography research crate (ADR-287) — synthetic
# stepped-frequency backprojection reconstruction. SYNTHETIC/L0 evidence
# only; not wired into any sensing pipeline above. See its own README.
cargo add wifi-densepose-sar
``` ```
See the full crate list and dependency order in [CLAUDE.md](../CLAUDE.md#crate-publishing-order). See the full crate list and dependency order in [CLAUDE.md](../CLAUDE.md#crate-publishing-order).