fix: add version specs to path dependencies for crates.io publishing

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
rUv 2026-02-23 03:14:45 +00:00
parent 5409bdd67f
commit 2481b1e042
7 changed files with 7 additions and 7 deletions

View file

@ -10,7 +10,7 @@ repository = "https://github.com/ruvnet/ruvector"
crate-type = ["cdylib"]
[dependencies]
ruvector-attention = { path = "../ruvector-attention", default-features = false }
ruvector-attention = { version = "2.0", path = "../ruvector-attention", default-features = false }
napi = { version = "2", default-features = false, features = ["napi9", "async", "serde-json"] }
napi-derive = "2"
serde = { version = "1.0", features = ["derive"] }

View file

@ -15,7 +15,7 @@ crate-type = ["cdylib"]
[dependencies]
napi = { workspace = true }
napi-derive = { workspace = true }
ruvector-gnn = { path = "../ruvector-gnn", default-features = false }
ruvector-gnn = { version = "2.0", path = "../ruvector-gnn", default-features = false }
serde_json = { workspace = true }
[build-dependencies]

View file

@ -13,7 +13,7 @@ name = "ruvector"
path = "src/main.rs"
[dependencies]
ruvector-router-core = { path = "../ruvector-router-core" }
ruvector-router-core = { version = "2.0", path = "../ruvector-router-core" }
# CLI dependencies
clap = { version = "4.5", features = ["derive"] }

View file

@ -12,7 +12,7 @@ description = "NAPI-RS bindings for ruvector-router-core vector database"
crate-type = ["cdylib"]
[dependencies]
ruvector-router-core = { path = "../ruvector-router-core" }
ruvector-router-core = { version = "2.0", path = "../ruvector-router-core" }
# NAPI-RS dependencies
napi = { workspace = true }

View file

@ -12,7 +12,7 @@ description = "WASM bindings for ruvector-router-core"
crate-type = ["cdylib", "rlib"]
[dependencies]
ruvector-router-core = { path = "../ruvector-router-core" }
ruvector-router-core = { version = "2.0", path = "../ruvector-router-core" }
# WASM dependencies
wasm-bindgen = { workspace = true }

View file

@ -13,7 +13,7 @@ description = "Node.js bindings for Tiny Dancer neural routing via NAPI-RS"
crate-type = ["cdylib"]
[dependencies]
ruvector-tiny-dancer-core = { path = "../ruvector-tiny-dancer-core" }
ruvector-tiny-dancer-core = { version = "2.0", path = "../ruvector-tiny-dancer-core" }
# Node.js bindings
napi = { workspace = true }

View file

@ -12,7 +12,7 @@ description = "WASM bindings for Tiny Dancer neural routing"
crate-type = ["cdylib", "rlib"]
[dependencies]
ruvector-tiny-dancer-core = { path = "../ruvector-tiny-dancer-core" }
ruvector-tiny-dancer-core = { version = "2.0", path = "../ruvector-tiny-dancer-core" }
# WASM dependencies
wasm-bindgen = { workspace = true }