chore(rulake): add version to ruvector-rabitq path dep for crates.io

cargo publish requires both `path` and `version` for cross-crate
workspace deps so crates.io can resolve them once the published
version lands. Adds `version = \"2.2\"` alongside the existing path
(path wins during local dev, version is what crates.io indexes).

Dry-run now passes the manifest-validation stage and only fails on
the expected "ruvector-rabitq not yet on crates.io" line —
publishing rabitq first + waiting ~1 min for indexing will clear it.

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
ruvnet 2026-04-24 10:15:18 -04:00
parent 2c4b7dd76b
commit e63fda6339

View file

@ -13,7 +13,7 @@ name = "rulake-demo"
path = "src/bin/rulake-demo.rs"
[dependencies]
ruvector-rabitq = { path = "../ruvector-rabitq" }
ruvector-rabitq = { path = "../ruvector-rabitq", version = "2.2" }
serde = { workspace = true }
serde_json = "1"
thiserror = { workspace = true }