From e767cbb3746c5516c8a4d5c493dd034f50ddf7cc Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Fri, 26 Apr 2024 16:26:57 -0700 Subject: [PATCH] chore: update to Lance version 0.10.16 and Arrow version 51 (#1247) --- Cargo.toml | 24 ++++++++++++------------ python/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c867f684..b1cb6c08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,19 +14,19 @@ keywords = ["lancedb", "lance", "database", "vector", "search"] categories = ["database-implementations"] [workspace.dependencies] -lance = { "version" = "=0.10.15", "features" = ["dynamodb"] } -lance-index = { "version" = "=0.10.15" } -lance-linalg = { "version" = "=0.10.15" } -lance-testing = { "version" = "=0.10.15" } +lance = { "version" = "=0.10.16", "features" = ["dynamodb"] } +lance-index = { "version" = "=0.10.16" } +lance-linalg = { "version" = "=0.10.16" } +lance-testing = { "version" = "=0.10.16" } # 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" +arrow = { version = "51.0", optional = false } +arrow-array = "51.0" +arrow-data = "51.0" +arrow-ipc = "51.0" +arrow-ord = "51.0" +arrow-schema = "51.0" +arrow-arith = "51.0" +arrow-cast = "51.0" async-trait = "0" chrono = "0.4.35" half = { "version" = "=2.3.1", default-features = false, features = [ diff --git a/python/Cargo.toml b/python/Cargo.toml index 45186383..89403a2f 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -14,7 +14,7 @@ name = "_lancedb" crate-type = ["cdylib"] [dependencies] -arrow = { version = "50.0.0", features = ["pyarrow"] } +arrow = { version = "51.0.0", features = ["pyarrow"] } lancedb = { path = "../rust/lancedb" } env_logger = "0.10" pyo3 = { version = "0.20", features = ["extension-module", "abi3-py38"] }