mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-25 22:29:58 +00:00
28 lines
496 B
TOML
28 lines
496 B
TOML
[package]
|
|
name = "vectordb-nodejs"
|
|
edition = "2021"
|
|
version = "0.0.0"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
arrow-ipc.workspace = true
|
|
napi = { version = "2.14", default-features = false, features = [
|
|
"napi7",
|
|
"async"
|
|
] }
|
|
napi-derive = "2.14"
|
|
vectordb = { path = "../rust/vectordb" }
|
|
lance.workspace = true
|
|
lance-linalg.workspace = true
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols"
|