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"