ruvector/crates/ruvector-gnn-node/Cargo.toml
rUv fb32082d28 chore: Bump version to 0.1.15 with security fixes and GNN forgetting mitigation
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>
2025-11-27 00:52:24 +00:00

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