From 81146666272288604526db75cf0b94df4c5c7875 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 16 Aug 2024 16:10:49 +0000 Subject: [PATCH] chore: pin the base version of delta-rs to 0.19.0 which has loads of improvements The performance improvements alone in this release are a a big deal for kafka-delta-ingest --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c1015a6..2e79863 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,9 +34,9 @@ uuid = { version = "0.8", features = ["serde", "v4"] } url = "2.3" # datafusion feature is required for writer version 2 -deltalake-core = { version = "~0.18.1", features = ["json", "datafusion"]} -deltalake-aws = { version = "~0.1.2", optional = true } -deltalake-azure = { version = "~0.1.3", optional = true } +deltalake-core = { version = "~0.19.0", features = ["json", "datafusion"]} +deltalake-aws = { version = "~0.1.4", optional = true } +deltalake-azure = { version = "~0.1.4", optional = true } # s3 feature enabled, helps for locking interactions with DLQ dynamodb_lock = { version = "0.6.0", optional = true }