mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
Change logs: * [v0.33.0-beta.3](https://github.com/lancedb/lance/releases/tag/v0.33.0-beta.3) * [v0.33.0-beta.2](https://github.com/lancedb/lance/releases/tag/v0.33.0-beta.2) * [v0.33.0-beta.1](https://github.com/lancedb/lance/releases/tag/v0.33.0-beta.1) Important changes: * Row-level conflict resolution for delete operations * Fixes #2593 * Fix for keeping tombstones fields around, preventing cleanup of dropped columns.
66 lines
2.7 KiB
TOML
66 lines
2.7 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.33.0", default-features = false, "features" = ["dynamodb"], "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-io = { "version" = "=0.33.0", default-features = false, "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-index = { "version" = "=0.33.0", "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-linalg = { "version" = "=0.33.0", "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-table = { "version" = "=0.33.0", "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-testing = { "version" = "=0.33.0", "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-datafusion = { "version" = "=0.33.0", "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
lance-encoding = { "version" = "=0.33.0", "tag" = "v0.33.0-beta.3", "git" = "https://github.com/lancedb/lance.git" }
|
|
# Note that this one does not include pyarrow
|
|
arrow = { version = "55.1", optional = false }
|
|
arrow-array = "55.1"
|
|
arrow-data = "55.1"
|
|
arrow-ipc = "55.1"
|
|
arrow-ord = "55.1"
|
|
arrow-schema = "55.1"
|
|
arrow-arith = "55.1"
|
|
arrow-cast = "55.1"
|
|
async-trait = "0"
|
|
datafusion = { version = "48.0", default-features = false }
|
|
datafusion-catalog = "48.0"
|
|
datafusion-common = { version = "48.0", default-features = false }
|
|
datafusion-execution = "48.0"
|
|
datafusion-expr = "48.0"
|
|
datafusion-physical-plan = "48.0"
|
|
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"
|
|
snafu = "0.8"
|
|
url = "2"
|
|
num-traits = "0.2"
|
|
rand = "0.9"
|
|
regex = "1.10"
|
|
lazy_static = "1"
|
|
semver = "1.0.25"
|
|
crunchy = "0.2.4"
|
|
# Temporary pins to work around downstream issues
|
|
# https://github.com/apache/arrow-rs/commit/2fddf85afcd20110ce783ed5b4cdeb82293da30b
|
|
chrono = "=0.4.41"
|
|
# https://github.com/RustCrypto/formats/issues/1684
|
|
base64ct = "=1.6.0"
|
|
# Workaround for: https://github.com/Lokathor/bytemuck/issues/306
|
|
bytemuck_derive = ">=1.8.1, <1.9.0"
|