mirror of
https://github.com/ruvnet/RuView
synced 2026-08-05 19:41:44 +00:00
9dceb976c7
- wifi-densepose-rufield: add version="0.1.0" to the four rufield path deps — rufield-core/-provenance/-privacy/-fusion are now published to crates.io, making this crate (and wifi-densepose-sensing-server 0.3.4) publishable - v2/crates/worldgraph -> 4441bc0: wifi-densepose-worldgraph 0.3.2 published (adds prune_semantic_states; unblocks wifi-densepose-engine 0.3.1 publish) - vendor/rufield -> f3c1492: breaks the fusion<->adapters circular dev-dependency (path-only dev-dep, stripped at publish) Closes the crates.io publish blockers in #1334. Co-Authored-By: claude-flow <ruv@ruv.net>
27 lines
1.3 KiB
TOML
27 lines
1.3 KiB
TOML
[package]
|
||
name = "wifi-densepose-rufield"
|
||
version = "0.3.0"
|
||
edition = "2021"
|
||
description = "ADR-262 anti-corruption bridge: converts RuView WiFi-CSI sensing output into signed RuField FieldEvents (P0–P5 privacy mapping + ed25519 provenance)"
|
||
license.workspace = true
|
||
authors.workspace = true
|
||
repository.workspace = true
|
||
|
||
# ADR-262 §5.4: this crate is the single coupling point ("anti-corruption
|
||
# layer") between RuView and the standalone RuField MFS spec. It depends on the
|
||
# `vendor/rufield` submodule crates **via path** (the `vendor/rvcsi` pattern) —
|
||
# RuView does NOT depend on published rufield crates (there are none) and does
|
||
# NOT make rufield a v2 workspace member. The four crates below are pure-Rust
|
||
# (serde / serde_json / toml / sha2 / ed25519-dalek only — no tch / openblas /
|
||
# ndarray / candle), so they build under `--no-default-features`.
|
||
[dependencies]
|
||
rufield-core = { version = "0.1.0", path = "../../../vendor/rufield/crates/rufield-core" }
|
||
rufield-provenance = { version = "0.1.0", path = "../../../vendor/rufield/crates/rufield-provenance" }
|
||
rufield-privacy = { version = "0.1.0", path = "../../../vendor/rufield/crates/rufield-privacy" }
|
||
rufield-fusion = { version = "0.1.0", path = "../../../vendor/rufield/crates/rufield-fusion" }
|
||
serde = { workspace = true }
|
||
serde_json = { workspace = true }
|
||
|
||
[dev-dependencies]
|
||
serde_json = { workspace = true }
|