29 lines
729 B
TOML
29 lines
729 B
TOML
[package]
|
|
name = "ruvector-attention-node"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Node.js bindings for ruvector-attention"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
ruvector-attention = { version = "2.0", path = "../ruvector-attention", default-features = false }
|
|
napi = { version = "2", default-features = false, features = ["napi9", "async", "serde-json"] }
|
|
napi-derive = "2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
strip = true
|