From f8621f9572afe8b2869e7b6cfd525806c318e802 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 7 Feb 2025 23:33:02 +0000 Subject: [PATCH] chore: adopt the released datafusion 45 release Signed-off-by: R. Tyler Croy --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cdb421ca61..be5287e040 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,16 +45,16 @@ object_store = { version = "0.11.2" , features = ["cloud"]} parquet = { version = "54" } # datafusion -datafusion = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-expr = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-common = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-ffi = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-functions = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-functions-aggregate = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-physical-expr = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-physical-plan = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-proto = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } -datafusion-sql = { git = "https://github.com/apache/arrow-datafusion.git", branch = "branch-45" } +datafusion = "45" +datafusion-expr = "45" +datafusion-common = "45" +datafusion-ffi = "45" +datafusion-functions = "45" +datafusion-functions-aggregate = "45" +datafusion-physical-expr = "45" +datafusion-physical-plan = "45" +datafusion-proto = "45" +datafusion-sql = "45" # serde serde = { version = "1.0.194", features = ["derive"] }