This is an automated email from the ASF dual-hosted git repository.

xushiyan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new 7566337  build: use exact versions for arrow and datafusion (#105)
7566337 is described below

commit 75663379bf3cbf794af2fcf3823045f07851754c
Author: Shiyan Xu <[email protected]>
AuthorDate: Mon Jul 29 23:55:56 2024 -0500

    build: use exact versions for arrow and datafusion (#105)
---
 Cargo.toml | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 75f5dad..33857c0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -35,25 +35,25 @@ repository = "https://github.com/apache/hudi-rs";
 
 [workspace.dependencies]
 # arrow
-arrow = { version = "52.0.0", features = ["pyarrow"] }
-arrow-arith = { version = "52.0.0" }
-arrow-array = { version = "52.0.0" }
-arrow-buffer = { version = "52.0.0" }
-arrow-cast = { version = "52.0.0" }
-arrow-ipc = { version = "52.0.0" }
-arrow-json = { version = "52.0.0" }
-arrow-ord = { version = "52.0.0" }
-arrow-row = { version = "52.0.0" }
-arrow-schema = { version = "52.0.0", features = ["serde"] }
-arrow-select = { version = "52.0.0" }
-object_store = { version = "0.10.1", features = ["aws", "azure", "gcp"] }
-parquet = { version = "52.0.0", features = ["async", "object_store"] }
+arrow = { version = "= 52.0.0", features = ["pyarrow"] }
+arrow-arith = { version = "= 52.0.0" }
+arrow-array = { version = "= 52.0.0" }
+arrow-buffer = { version = "= 52.0.0" }
+arrow-cast = { version = "= 52.0.0" }
+arrow-ipc = { version = "= 52.0.0" }
+arrow-json = { version = "= 52.0.0" }
+arrow-ord = { version = "= 52.0.0" }
+arrow-row = { version = "= 52.0.0" }
+arrow-schema = { version = "= 52.0.0", features = ["serde"] }
+arrow-select = { version = "= 52.0.0" }
+object_store = { version = "= 0.10.1", features = ["aws", "azure", "gcp"] }
+parquet = { version = "= 52.0.0", features = ["async", "object_store"] }
 
 # datafusion
-datafusion = { version = "39.0.0" }
-datafusion-expr = { version = "39.0.0" }
-datafusion-common = { version = "39.0.0" }
-datafusion-physical-expr = { version = "39.0.0" }
+datafusion = { version = "= 39.0.0" }
+datafusion-expr = { version = "= 39.0.0" }
+datafusion-common = { version = "= 39.0.0" }
+datafusion-physical-expr = { version = "= 39.0.0" }
 
 # serde
 serde = { version = "1.0.203", features = ["derive"] }

Reply via email to