refactor(swarm): rename wifi-densepose-swarm → ruview-swarm
The swarm control system is a RuView-level capability (drone coordination, Raft consensus, MARL) that operates above the wifi-densepose sensing layer rather than being a sub-component of it. Rename aligns with the project identity and separates coordination infrastructure from sensing modules. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
parent
944e014c59
commit
802176c02d
|
|
@ -7415,6 +7415,27 @@ version = "2.0.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "753a07254fa68db183949ec6c7575d890da4d42404afabc11d610a720fcf570c"
|
checksum = "753a07254fa68db183949ec6c7575d890da4d42404afabc11d610a720fcf570c"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ruview-swarm"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"async-trait",
|
||||||
|
"criterion",
|
||||||
|
"hmac",
|
||||||
|
"mavlink",
|
||||||
|
"nalgebra",
|
||||||
|
"ort",
|
||||||
|
"rand 0.8.5",
|
||||||
|
"serde",
|
||||||
|
"sha2",
|
||||||
|
"thiserror 2.0.18",
|
||||||
|
"tokio",
|
||||||
|
"tokio-test",
|
||||||
|
"toml 0.8.23",
|
||||||
|
"tracing",
|
||||||
|
"wifi-densepose-core",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ryu"
|
name = "ryu"
|
||||||
version = "1.0.23"
|
version = "1.0.23"
|
||||||
|
|
@ -11010,27 +11031,6 @@ dependencies = [
|
||||||
"wifi-densepose-ruvector",
|
"wifi-densepose-ruvector",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "wifi-densepose-swarm"
|
|
||||||
version = "0.1.0"
|
|
||||||
dependencies = [
|
|
||||||
"async-trait",
|
|
||||||
"criterion",
|
|
||||||
"hmac",
|
|
||||||
"mavlink",
|
|
||||||
"nalgebra",
|
|
||||||
"ort",
|
|
||||||
"rand 0.8.5",
|
|
||||||
"serde",
|
|
||||||
"sha2",
|
|
||||||
"thiserror 2.0.18",
|
|
||||||
"tokio",
|
|
||||||
"tokio-test",
|
|
||||||
"toml 0.8.23",
|
|
||||||
"tracing",
|
|
||||||
"wifi-densepose-core",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wifi-densepose-train"
|
name = "wifi-densepose-train"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ members = [
|
||||||
"crates/homecore-hap", # ADR-125 — Apple Home HomeKit Accessory Protocol bridge
|
"crates/homecore-hap", # ADR-125 — Apple Home HomeKit Accessory Protocol bridge
|
||||||
"crates/homecore-assist", # ADR-133 — HOMECORE voice assistant + ruflo bridge
|
"crates/homecore-assist", # ADR-133 — HOMECORE voice assistant + ruflo bridge
|
||||||
"crates/homecore-server", # iter-9 — HOMECORE integration binary (all 8 crates wired together)
|
"crates/homecore-server", # iter-9 — HOMECORE integration binary (all 8 crates wired together)
|
||||||
"crates/wifi-densepose-swarm", # ADR-148 — drone swarm control system
|
"crates/ruview-swarm", # ADR-148 — drone swarm control system
|
||||||
]
|
]
|
||||||
# ADR-040: WASM edge crate targets wasm32-unknown-unknown (no_std),
|
# ADR-040: WASM edge crate targets wasm32-unknown-unknown (no_std),
|
||||||
# excluded from workspace to avoid breaking `cargo test --workspace`.
|
# excluded from workspace to avoid breaking `cargo test --workspace`.
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "wifi-densepose-swarm"
|
name = "ruview-swarm"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Drone swarm control system — hierarchical-mesh topology, Raft consensus, MARL, CSI sensing integration (ADR-148)"
|
description = "RuView drone swarm control system — hierarchical-mesh topology, Raft consensus, MARL, CSI sensing integration (ADR-148)"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
Loading…
Reference in New Issue