From b4c3bdcf0ad0cb24f4dde6ce2cf452d3b9737cfc Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Thu, 8 Aug 2024 16:57:04 -0500 Subject: [PATCH] Bump datafusion to v41 --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 32c8f0c..00ff787 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ rust-version = "1.76.0" [dependencies] arrow = "52.1.0" arrow-schema = "52.1.0" -datafusion-common = "40" -datafusion-expr = "40" -datafusion-execution = "40" +datafusion-common = { git = "https://github.com/adriangb/datafusion.git", rev = "0d8d01577" } +datafusion-expr = { git = "https://github.com/adriangb/datafusion.git", rev = "0d8d01577" } +datafusion-execution = { git = "https://github.com/adriangb/datafusion.git", rev = "0d8d01577" } jiter = "0.5" paste = "1" log = "0.4" @@ -23,7 +23,7 @@ log = "0.4" [dev-dependencies] codspeed-criterion-compat = "2.3" criterion = "0.5.1" -datafusion = "40" +datafusion = { git = "https://github.com/adriangb/datafusion.git", rev = "0d8d01577" } clap = "4" tokio = { version = "1.37", features = ["full"] }