mirror of
https://github.com/ruvnet/RuView
synced 2026-07-25 17:51:48 +00:00
d24bf36110
- core 0.3.0->0.3.1 (ComplexSample/CanonicalFrame/provenance + blake3 dep) - ruvector 0.3.0->0.3.1 (ClockQualityGate) - bfld 0.3.0->0.3.1 (privacy control plane) - signal 0.3.1->0.3.2 (fuse_scored_calibrated/ArrayCoordinator/evolution/rf_slam) - geo: add license/repository for first publish; worldgraph/engine pin geo version - new: geo 0.1.0, worldgraph 0.3.0, engine 0.3.0 Co-Authored-By: claude-flow <ruv@ruv.net>
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "wifi-densepose-ruvector"
|
|
version = "0.3.1" # ADR-138: ClockQualityGate / clock-quality coherence gate
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "RuVector v2.0.4 integration layer — ADR-017 signal processing and MAT ruvector integrations"
|
|
repository.workspace = true
|
|
keywords = ["wifi", "csi", "ruvector", "signal-processing", "disaster-detection"]
|
|
categories = ["science", "computer-vision"]
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = []
|
|
crv = ["dep:ruvector-crv", "dep:ruvector-gnn", "dep:serde", "dep:serde_json"]
|
|
|
|
[dependencies]
|
|
ruvector-core = { workspace = true }
|
|
ruvector-mincut = { workspace = true }
|
|
ruvector-attn-mincut = { workspace = true }
|
|
ruvector-temporal-tensor = { workspace = true }
|
|
ruvector-solver = { workspace = true }
|
|
ruvector-attention = { workspace = true }
|
|
ruvector-crv = { workspace = true, optional = true }
|
|
ruvector-gnn = { workspace = true, optional = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
|
|
# ADR-084 Pass 5 — privacy-preserving event log uses SHA-256 to
|
|
# anchor each stored sketch as a content-addressable witness hash.
|
|
sha2 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
criterion = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "crv_bench"
|
|
harness = false
|
|
required-features = ["crv"]
|
|
|
|
[[bench]]
|
|
name = "sketch_bench"
|
|
harness = false
|