From bf55feb9b61cc30bbfaf1a5395b6d4cbc63ceea4 Mon Sep 17 00:00:00 2001 From: Rudi Floren Date: Thu, 16 Oct 2025 19:54:06 +0200 Subject: [PATCH] feat: remove dynamodb default dependency (#2720) `dynamodb` pulls in aws-* crates even if not used. You can enable the `dynamodb` feature for lancedb to enable it for lance. Closes #2718 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 40f7cfa8..70ee3f2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ categories = ["database-implementations"] rust-version = "1.78.0" [workspace.dependencies] -lance = { "version" = "=0.38.2", default-features = false, "features" = ["dynamodb"], "tag" = "v0.38.3-beta.2", "git" = "https://github.com/lancedb/lance.git" } +lance = { "version" = "=0.38.2", default-features = false, "tag" = "v0.38.3-beta.2", "git" = "https://github.com/lancedb/lance.git" } lance-core = { "version" = "=0.38.2", "tag" = "v0.38.3-beta.2", "git" = "https://github.com/lancedb/lance.git" } lance-datagen = { "version" = "=0.38.2", "tag" = "v0.38.3-beta.2", "git" = "https://github.com/lancedb/lance.git" } lance-file = { "version" = "=0.38.2", "tag" = "v0.38.3-beta.2", "git" = "https://github.com/lancedb/lance.git" }