mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 23:24:03 +00:00
- ruvector-attention: 0.1.32 → version.workspace = true (2.0.4) - ruvector-attention-wasm: 0.1.32 → workspace, dep 0.1.31 → 2.0 - ruvector-attention-node: 0.1.0 → workspace, dep already 2.0 - ruvector-dag: 0.1.0 → workspace, add version spec on ruvector-core dep - ruvector-gnn-wasm: fix malformed Cargo.toml (metadata before version), add version spec - ruvector-attention-unified-wasm: add version specs, fix category slug - Update all consumers: ruvector-crv, ruvllm, ruvector-postgres, prime-radiant, rvdna, OSpipe Published to crates.io: ruvector-attention@2.0.4, ruvector-dag@2.0.4, ruvector-tiny-dancer-core@2.0.4, ruvector-attention-wasm@2.0.4, ruvector-attention-node@2.0.4, ruvector-gnn-wasm@2.0.4, ruvector-gnn-node@2.0.4, ruvector-tiny-dancer-wasm@2.0.4, ruvector-tiny-dancer-node@2.0.4, ruvector-router-wasm@2.0.4, ruvector-router-ffi@2.0.4, ruvector-router-cli@2.0.4, ruvector-attention-unified-wasm@0.1.0 Co-Authored-By: claude-flow <ruv@ruv.net>
28 lines
729 B
TOML
28 lines
729 B
TOML
[package]
|
|
name = "ruvector-attention-node"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Node.js bindings for ruvector-attention"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
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"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
strip = true
|