mirror of
https://github.com/ruvnet/RuView
synced 2026-07-29 18:31:44 +00:00
22ca3da48c
- 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>
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "cog-person-count"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.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."
|
|
|
|
[[bin]]
|
|
name = "cog-person-count"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "cog_person_count"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "time"] }
|
|
sha2 = "0.10"
|
|
ureq = { version = "2", default-features = false, features = ["tls"] }
|
|
# Same Candle stack the pose cog uses — CPU by default, `cuda` feature
|
|
# opt-in for hosts with a CUDA GPU.
|
|
candle-core = { version = "0.9", default-features = false }
|
|
candle-nn = { version = "0.9", default-features = false }
|
|
safetensors = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
approx = "0.5"
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["candle-core/cuda", "candle-nn/cuda"]
|
|
hailo = []
|