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>
This commit is contained in:
ruv
2026-05-25 10:52:47 -04:00
parent 2e0366c214
commit 22ca3da48c
3 changed files with 4 additions and 3 deletions
+3
View File
@@ -6,6 +6,9 @@ authors.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
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." 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."
# Blocked from crates.io: requires wifi-densepose-sensing-server feature
# `mqtt` which is not present in the published 0.3.0. Republish sensing-server
# with the mqtt feature exposed, then drop this flag.
publish = false publish = false
[[bin]] [[bin]]
-1
View File
@@ -6,7 +6,6 @@ authors.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
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." 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."
publish = false
[[bin]] [[bin]]
name = "cog-person-count" name = "cog-person-count"
+1 -2
View File
@@ -6,7 +6,6 @@ authors.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
description = "Cognitum Cog: 17-keypoint pose estimation from WiFi CSI. See ADR-100 (packaging) + ADR-101 (this Cog)." description = "Cognitum Cog: 17-keypoint pose estimation from WiFi CSI. See ADR-100 (packaging) + ADR-101 (this Cog)."
publish = false
[[bin]] [[bin]]
name = "cog-pose-estimation" name = "cog-pose-estimation"
@@ -36,7 +35,7 @@ candle-nn = { version = "0.9", default-features = false }
safetensors = "0.4" safetensors = "0.4"
# wifi-densepose-train re-exports the model types we need; depend by path # wifi-densepose-train re-exports the model types we need; depend by path
# inside the workspace. # inside the workspace.
wifi-densepose-train = { path = "../wifi-densepose-train", default-features = false } wifi-densepose-train = { version = "0.3.1", path = "../wifi-densepose-train", default-features = false }
[dev-dependencies] [dev-dependencies]
tempfile = "3" tempfile = "3"