mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-27 00:25:10 +00:00
- Add missing `active_pos` vec in canonical min-cut Stoer-Wagner impl - Bump cognitum-gate-kernel to 0.1.1 for new canonical_witness module - Fix cognitum-gate-kernel ruvector-mincut dep version (0.1.30 → 2.0) - Add version specs to mincut-wasm and mincut-node path dependencies - Add README and metadata to ruvector-cognitive-container for crates.io - Relax bench thresholds for CI/debug-mode environments Co-Authored-By: claude-flow <ruv@ruv.net>
27 lines
704 B
TOML
27 lines
704 B
TOML
[package]
|
|
name = "ruvector-mincut-node"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Node.js bindings for subpolynomial-time dynamic minimum cut"
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
keywords = ["mincut", "nodejs", "napi", "graph", "algorithm"]
|
|
categories = ["api-bindings", "algorithms"]
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
ruvector-mincut = { version = "2.0", path = "../ruvector-mincut", features = ["monitoring"] }
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|
|
|
|
[features]
|
|
default = []
|