git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
43 lines
922 B
TOML
43 lines
922 B
TOML
[package]
|
|
name = "ruvector-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 via NAPI-RS"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
ruvector-core = { path = "../ruvector-core" }
|
|
ruvector-collections = { path = "../ruvector-collections" }
|
|
ruvector-filter = { path = "../ruvector-filter" }
|
|
ruvector-metrics = { path = "../ruvector-metrics" }
|
|
|
|
# Node.js bindings
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
|
|
# Async
|
|
tokio = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|