mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 06:39:57 +00:00
Adds a script to change the lance dependency easily. To make this change, I just had to run: ```bash python ci/set_lance_version.py stable ``` <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added a script to automate updating the Lance package version in project dependencies. - **Chores** - Updated workflows to improve lockfile management and automate updates during releases and publishing. - Switched Lance dependencies from git-based references to fixed version numbers for improved stability. - Enhanced lockfile update script with an option to amend commits and quieter output. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
73 lines
2.0 KiB
TOML
73 lines
2.0 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"]
|
|
rust-version = "1.78.0"
|
|
|
|
[workspace.dependencies]
|
|
lance = { "version" = "=0.29.0", "features" = ["dynamodb"] }
|
|
lance-io = "=0.29.0"
|
|
lance-index = "=0.29.0"
|
|
lance-linalg = "=0.29.0"
|
|
lance-table = "=0.29.0"
|
|
lance-testing = "=0.29.0"
|
|
lance-datafusion = "=0.29.0"
|
|
lance-encoding = "=0.29.0"
|
|
# 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 = "47.0", default-features = false }
|
|
datafusion-catalog = "47.0"
|
|
datafusion-common = { version = "47.0", default-features = false }
|
|
datafusion-execution = "47.0"
|
|
datafusion-expr = "47.0"
|
|
datafusion-physical-plan = "47.0"
|
|
env_logger = "0.11"
|
|
half = { "version" = "=2.5.0", default-features = false, features = [
|
|
"num-traits",
|
|
] }
|
|
futures = "0"
|
|
log = "0.4"
|
|
moka = { version = "0.12", features = ["future"] }
|
|
object_store = "0.11.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"
|
|
# 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/eira-fransham/crunchy/issues/13
|
|
crunchy = "=0.2.2"
|
|
# Workaround for: https://github.com/Lokathor/bytemuck/issues/306
|
|
bytemuck_derive = ">=1.8.1, <1.9.0"
|