mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 06:39:57 +00:00
This also renames the new experimental node package to lancedb. The classic node package remains named vectordb. The goal here is to avoid introducing piecemeal breaking changes to the vectordb crate. Instead, once the new API is stabilized, we will officially release the lancedb crate and deprecate the vectordb crate. The same pattern will eventually happen with the npm package vectordb.
31 lines
674 B
TOML
31 lines
674 B
TOML
[package]
|
|
name = "lancedb-nodejs"
|
|
edition.workspace = true
|
|
version = "0.0.0"
|
|
license.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
arrow-ipc.workspace = true
|
|
futures.workspace = true
|
|
lance-linalg.workspace = true
|
|
lance.workspace = true
|
|
lancedb = { path = "../rust/lancedb" }
|
|
napi = { version = "2.15", default-features = false, features = [
|
|
"napi7",
|
|
"async"
|
|
] }
|
|
napi-derive = "2"
|
|
|
|
# Prevent dynamic linking of lzma, which comes from datafusion
|
|
lzma-sys = { version = "*", features = ["static"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|