Skip to content

Commit 22ca3da

Browse files
committed
chore(cogs): publish cog-person-count + cog-pose-estimation 0.3.0 to crates.io
- cog-person-count: no path deps, clean publish. - cog-pose-estimation: added explicit version="0.3.1" to the wifi-densepose-train path dep (crates.io rejects path-only deps). - cog-ha-matter: keeps publish=false; the published wifi-densepose-sensing-server@0.3.0 does not expose the `mqtt` feature this cog requires. Note added inline; republish sensing-server with the feature exposed before dropping the flag. Co-Authored-By: claude-flow <ruv@ruv.net>
1 parent 2e0366c commit 22ca3da

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

v2/crates/cog-ha-matter/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ authors.workspace = true
66
license.workspace = true
77
repository.workspace = true
88
description = "Cognitum Cog: Home Assistant + Matter integration for the Seed (ADR-116). Wraps ADR-115's HA-DISCO + HA-MIND publisher as a Seed-installable artifact with mDNS, embedded broker, RuVector-backed thresholds, and Ed25519 witness."
9+
# Blocked from crates.io: requires wifi-densepose-sensing-server feature
10+
# `mqtt` which is not present in the published 0.3.0. Republish sensing-server
11+
# with the mqtt feature exposed, then drop this flag.
912
publish = false
1013

1114
[[bin]]

v2/crates/cog-person-count/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors.workspace = true
66
license.workspace = true
77
repository.workspace = true
88
description = "Cognitum Cog: learned multi-person counter from WiFi CSI (ADR-103). Replaces the PR #491 slot heuristic with a Candle-based count head + Stoer-Wagner multi-node fusion."
9-
publish = false
109

1110
[[bin]]
1211
name = "cog-person-count"

v2/crates/cog-pose-estimation/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ authors.workspace = true
66
license.workspace = true
77
repository.workspace = true
88
description = "Cognitum Cog: 17-keypoint pose estimation from WiFi CSI. See ADR-100 (packaging) + ADR-101 (this Cog)."
9-
publish = false
109

1110
[[bin]]
1211
name = "cog-pose-estimation"
@@ -36,7 +35,7 @@ candle-nn = { version = "0.9", default-features = false }
3635
safetensors = "0.4"
3736
# wifi-densepose-train re-exports the model types we need; depend by path
3837
# inside the workspace.
39-
wifi-densepose-train = { path = "../wifi-densepose-train", default-features = false }
38+
wifi-densepose-train = { version = "0.3.1", path = "../wifi-densepose-train", default-features = false }
4039

4140
[dev-dependencies]
4241
tempfile = "3"

0 commit comments

Comments
 (0)