Skip to content

Commit

Permalink
build: Use DataFusion 39.0.0 release (apache#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya authored and kazuyukitanimura committed Jul 1, 2024
1 parent 855f542 commit 35fd2fa
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 79 deletions.
158 changes: 85 additions & 73 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ itertools = "0.11.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
chrono-tz = { version = "0.8" }
paste = "1.0.14"
datafusion-common = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1" }
datafusion = { default-features = false, git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", features = ["unicode_expressions", "crypto_expressions"] }
datafusion-functions = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", features = ["crypto_expressions"] }
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", default-features = false }
datafusion-physical-expr-common = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", default-features = false }
datafusion-physical-expr = { git = "https://github.com/apache/arrow-datafusion.git", tag = "39.0.0-rc1", default-features = false }
datafusion-common = { version = "39.0.0" }
datafusion = { default-features = false, version = "39.0.0", features = ["unicode_expressions", "crypto_expressions"] }
datafusion-functions = { version = "39.0.0", features = ["crypto_expressions"] }
datafusion-expr = { version = "39.0.0", default-features = false }
datafusion-physical-expr-common = { version = "39.0.0", default-features = false }
datafusion-physical-expr = { version = "39.0.0", default-features = false }
unicode-segmentation = "^1.10.1"
once_cell = "1.18.0"
regex = "1.9.6"
Expand Down

0 comments on commit 35fd2fa

Please sign in to comment.