mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
BREAKING CHANGE: default file format changed to Lance v2.0. Upgrade Lance to 0.18.0 Change notes: https://github.com/lancedb/lance/releases/tag/v0.18.0
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[workspace]
|
|
members = [
|
|
"rust/ffi/node",
|
|
"rust/lancedb",
|
|
"nodejs",
|
|
"python",
|
|
"java/core/lancedb-jni",
|
|
]
|
|
# 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.18.0", "features" = ["dynamodb"] }
|
|
lance-index = { "version" = "=0.18.0" }
|
|
lance-linalg = { "version" = "=0.18.0" }
|
|
lance-table = { "version" = "=0.18.0" }
|
|
lance-testing = { "version" = "=0.18.0" }
|
|
lance-datafusion = { "version" = "=0.18.0" }
|
|
lance-encoding = { "version" = "=0.18.0" }
|
|
# Note that this one does not include pyarrow
|
|
arrow = { version = "52.2", optional = false }
|
|
arrow-array = "52.2"
|
|
arrow-data = "52.2"
|
|
arrow-ipc = "52.2"
|
|
arrow-ord = "52.2"
|
|
arrow-schema = "52.2"
|
|
arrow-arith = "52.2"
|
|
arrow-cast = "52.2"
|
|
async-trait = "0"
|
|
chrono = "0.4.35"
|
|
datafusion-physical-plan = "40.0"
|
|
half = { "version" = "=2.4.1", default-features = false, features = [
|
|
"num-traits",
|
|
] }
|
|
futures = "0"
|
|
log = "0.4"
|
|
object_store = "0.10.2"
|
|
pin-project = "1.0.7"
|
|
snafu = "0.7.4"
|
|
url = "2"
|
|
num-traits = "0.2"
|
|
regex = "1.10"
|
|
lazy_static = "1"
|