mirror of
https://github.com/ruvnet/RuView
synced 2026-06-09 10:13:17 +00:00
e94c7056f2
- ADR-042: Coherent Human Channel Imaging (non-CSI sensing protocol) with DDD domain model (6 bounded contexts) - 24 new WASM edge modules: medical (5), retail (5), security (5), building (5), industrial (5), exotic (8) - README: plain-language rewrites, moved detail sections below TOC, added edge module links to use case tables, firmware release docs - User guide: firmware release table, edge intelligence documentation - .gitignore: added rules for wasm, esp32 temp files, NVS binaries - WASM edge crate: cargo config, integration tests, module registry Co-Authored-By: claude-flow <ruv@ruv.net>
9 lines
307 B
TOML
9 lines
307 B
TOML
[target.wasm32-unknown-unknown]
|
|
rustflags = [
|
|
"-C", "link-arg=-z",
|
|
"-C", "link-arg=stack-size=8192",
|
|
"-C", "link-arg=--initial-memory=131072",
|
|
"-C", "link-arg=--max-memory=131072",
|
|
"-C", "target-feature=-bulk-memory,-nontrapping-fptoint,-sign-ext,-reference-types,-multivalue,-mutable-globals",
|
|
]
|