mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
66 lines
1.9 KiB
TOML
66 lines
1.9 KiB
TOML
[workspace]
|
|
members = ["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"]
|
|
rust-version = "1.78.0"
|
|
|
|
[workspace.dependencies]
|
|
lance = { "version" = "=0.39.0", default-features = false }
|
|
lance-core = "=0.39.0"
|
|
lance-datagen = "=0.39.0"
|
|
lance-file = "=0.39.0"
|
|
lance-io = { "version" = "=0.39.0", default-features = false }
|
|
lance-index = "=0.39.0"
|
|
lance-linalg = "=0.39.0"
|
|
lance-namespace = "=0.39.0"
|
|
lance-namespace-impls = { "version" = "=0.39.0", "features" = ["dir-aws", "dir-gcp", "dir-azure", "dir-oss", "rest"] }
|
|
lance-table = "=0.39.0"
|
|
lance-testing = "=0.39.0"
|
|
lance-datafusion = "=0.39.0"
|
|
lance-encoding = "=0.39.0"
|
|
lance-arrow = "=0.39.0"
|
|
ahash = "0.8"
|
|
# Note that this one does not include pyarrow
|
|
arrow = { version = "56.2", optional = false }
|
|
arrow-array = "56.2"
|
|
arrow-data = "56.2"
|
|
arrow-ipc = "56.2"
|
|
arrow-ord = "56.2"
|
|
arrow-schema = "56.2"
|
|
arrow-select = "56.2"
|
|
arrow-cast = "56.2"
|
|
async-trait = "0"
|
|
datafusion = { version = "50.1", default-features = false }
|
|
datafusion-catalog = "50.1"
|
|
datafusion-common = { version = "50.1", default-features = false }
|
|
datafusion-execution = "50.1"
|
|
datafusion-expr = "50.1"
|
|
datafusion-physical-plan = "50.1"
|
|
env_logger = "0.11"
|
|
half = { "version" = "2.6.0", default-features = false, features = [
|
|
"num-traits",
|
|
] }
|
|
futures = "0"
|
|
log = "0.4"
|
|
moka = { version = "0.12", features = ["future"] }
|
|
object_store = "0.12.0"
|
|
pin-project = "1.0.7"
|
|
rand = "0.9"
|
|
snafu = "0.8"
|
|
url = "2"
|
|
num-traits = "0.2"
|
|
regex = "1.10"
|
|
lazy_static = "1"
|
|
semver = "1.0.25"
|
|
chrono = "0.4"
|