mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-29 19:33:34 +00:00
Version bump and comprehensive updates: ## GNN Forgetting Mitigation (Issue #17) - Add Adam optimizer with bias-corrected momentum - Add SGD with momentum for convergence - Add Elastic Weight Consolidation (EWC) for catastrophic forgetting prevention - Add ReplayBuffer with reservoir sampling - Add 6 learning rate scheduling strategies - All 177 GNN tests passing ## Security Fixes - Fixed integer overflow vulnerabilities across core crates - Enhanced bounds checking in arena allocations - Improved quantization safety - Added verification tests for security fixes ## Dependency Updates - Updated ruvector-gnn dependency versions in node/wasm crates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
594 B
TOML
26 lines
594 B
TOML
[package]
|
|
name = "ruvector-gnn-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 GNN via NAPI-RS"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
ruvector-gnn = { version = "0.1.15", path = "../ruvector-gnn", default-features = false }
|
|
serde_json = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|