Skip to content

Commit

Permalink
build(deps): upgrade Datafusion, Arrow, and Rust versions (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanc-n authored Nov 27, 2024
1 parent 5b9c5ff commit 361e281
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resolver = "2"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.76"
rust-version = "1.79"
keywords = ["apachehudi", "hudi", "datalake", "arrow"]
readme = "README.md"
description = "A native Rust library for Apache Hudi"
Expand All @@ -35,25 +35,25 @@ repository = "https://github.com/apache/hudi-rs"

[workspace.dependencies]
# arrow
arrow = { version = "= 53.1.0", features = ["pyarrow"] }
arrow-arith = { version = "= 53.1.0" }
arrow-array = { version = "= 53.1.0" }
arrow-buffer = { version = "= 53.1.0" }
arrow-cast = { version = "= 53.1.0" }
arrow-ipc = { version = "= 53.1.0" }
arrow-json = { version = "= 53.1.0" }
arrow-ord = { version = "= 53.1.0" }
arrow-row = { version = "= 53.1.0" }
arrow-schema = { version = "= 53.1.0", features = ["serde"] }
arrow-select = { version = "= 53.1.0" }
arrow = { version = "= 53.3.0", features = ["pyarrow"] }
arrow-arith = { version = "= 53.3.0" }
arrow-array = { version = "= 53.3.0" }
arrow-buffer = { version = "= 53.3.0" }
arrow-cast = { version = "= 53.3.0" }
arrow-ipc = { version = "= 53.3.0" }
arrow-json = { version = "= 53.3.0" }
arrow-ord = { version = "= 53.3.0" }
arrow-row = { version = "= 53.3.0" }
arrow-schema = { version = "= 53.3.0", features = ["serde"] }
arrow-select = { version = "= 53.3.0" }
object_store = { version = "= 0.11.1", features = ["aws", "azure", "gcp"] }
parquet = { version = "= 53.1.0", features = ["async", "object_store"] }
parquet = { version = "= 53.3.0", features = ["async", "object_store"] }

# datafusion
datafusion = { version = "= 42.2.0" }
datafusion-expr = { version = "= 42.2.0" }
datafusion-common = { version = "= 42.2.0" }
datafusion-physical-expr = { version = "= 42.2.0" }
datafusion = { version = "= 43.0.0" }
datafusion-expr = { version = "= 43.0.0" }
datafusion-common = { version = "= 43.0.0" }
datafusion-physical-expr = { version = "= 43.0.0" }

# serde
percent-encoding = { version = "2.3.1" }
Expand Down
1 change: 1 addition & 0 deletions crates/datafusion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ impl TableProvider for HudiDataSource {
}
}

#[derive(Debug)]
pub struct HudiTableFactory {}

impl HudiTableFactory {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
# under the License.

[toolchain]
channel = "1.76"
channel = "1.79"
components = ["rustfmt", "clippy"]
profile = "minimal"

0 comments on commit 361e281

Please sign in to comment.