mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-27 15:12:53 +00:00
* Query as a fluent API and `AsyncIterator<RecordBatch>` * Much more docs * Add tests for auto infer vector search columns with different dimensions.
29 lines
521 B
TOML
29 lines
521 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
|
|
futures.workspace = true
|
|
lance-linalg.workspace = true
|
|
lance.workspace = true
|
|
vectordb = { path = "../rust/vectordb" }
|
|
napi = { version = "2.14", default-features = false, features = [
|
|
"napi7",
|
|
"async"
|
|
] }
|
|
napi-derive = "2.14"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols"
|