From e06a63f427ee3b421dd4d424327f5f542cfcdc63 Mon Sep 17 00:00:00 2001 From: Lei Xu Date: Thu, 4 Jul 2024 12:19:30 -0700 Subject: [PATCH] bump lance version --- Cargo.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 90a2cff6..43106ab5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,11 +20,13 @@ keywords = ["lancedb", "lance", "database", "vector", "search"] categories = ["database-implementations"] [workspace.dependencies] -lance = { "version" = "=0.13.0", "features" = ["dynamodb"] } -lance-index = { "version" = "=0.13.0" } -lance-linalg = { "version" = "=0.13.0" } -lance-testing = { "version" = "=0.13.0" } -lance-datafusion = { "version" = "=0.13.0" } +lance = { git = "https://github.com/lancedb/lance", tag = "v0.14.0-beta.2", features = [ + "dynamodb" +] } +lance-index = { git = "https://github.com/lancedb/lance", tag = "v0.14.0-beta.2" } +lance-linalg = { git = "https://github.com/lancedb/lance", tag = "v0.14.0-beta.2" } +lance-testing = { git = "https://github.com/lancedb/lance", tag = "v0.14.0-beta.2" } +lance-datafusion = { git = "https://github.com/lancedb/lance", tag = "v0.14.0-beta.2" } # Note that this one does not include pyarrow arrow = { version = "51.0", optional = false } arrow-array = "51.0"