mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-10 13:52:58 +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.
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[workspace]
|
|
members = ["rust/ffi/node", "rust/lancedb", "nodejs"]
|
|
# Python package needs to be built by maturin.
|
|
exclude = ["python"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
authors = ["LanceDB Devs <dev@lancedb.com>"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/lancedb/lancedb"
|
|
description = "Serverless, low-latency vector database for AI applications"
|
|
keywords = ["lancedb", "lance", "database", "vector", "search"]
|
|
categories = ["database-implementations"]
|
|
|
|
[workspace.dependencies]
|
|
lance = { "version" = "=0.9.18", "features" = ["dynamodb"] }
|
|
lance-index = { "version" = "=0.9.18" }
|
|
lance-linalg = { "version" = "=0.9.18" }
|
|
lance-testing = { "version" = "=0.9.18" }
|
|
# Note that this one does not include pyarrow
|
|
arrow = { version = "50.0", optional = false }
|
|
arrow-array = "50.0"
|
|
arrow-data = "50.0"
|
|
arrow-ipc = "50.0"
|
|
arrow-ord = "50.0"
|
|
arrow-schema = "50.0"
|
|
arrow-arith = "50.0"
|
|
arrow-cast = "50.0"
|
|
async-trait = "0"
|
|
chrono = "0.4.23"
|
|
half = { "version" = "=2.3.1", default-features = false, features = [
|
|
"num-traits",
|
|
] }
|
|
futures = "0"
|
|
log = "0.4"
|
|
object_store = "0.9.0"
|
|
snafu = "0.7.4"
|
|
url = "2"
|
|
num-traits = "0.2"
|