mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 13:54:31 +00:00
- Add persistence support using redb storage backend - Add GraphDatabase.open() factory method for opening existing databases - Add isPersistent() and getStoragePath() methods - Update TypeScript definitions with all new APIs - Add benchmark suite (131K+ ops/sec batch inserts) - Add comprehensive test suite with persistence tests - Add GitHub workflow for multi-platform builds - Fix sync-lockfile.sh working directory bug - Publish @ruvector/graph-node@0.1.15 to npm - Publish @ruvector/graph-node-linux-x64-gnu@0.1.15 to npm Performance benchmarks: - Node Creation: 9.17K ops/sec - Batch Node Creation: 131.10K ops/sec - Edge Creation: 9.30K ops/sec - Vector Search (k=10): 2.35K ops/sec - k-hop Traversal: 10.28K ops/sec 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
973 B
TOML
44 lines
973 B
TOML
[package]
|
|
name = "ruvector-graph-node"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
description = "Node.js bindings for RuVector Graph Database via NAPI-RS"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
ruvector-core = { version = "0.1.2", path = "../ruvector-core" }
|
|
ruvector-graph = { version = "0.1.0", path = "../ruvector-graph", features = ["storage"] }
|
|
|
|
# Node.js bindings
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
|
|
# Async
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Graph functionality
|
|
uuid = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|