Skip to content

Commit

Permalink
lock datafusion deps to 41
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed Aug 20, 2024
1 parent 34e9f54 commit 10d8290
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 72 deletions.
98 changes: 33 additions & 65 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ tokio = { version = "1.39", features = ["macros", "rt", "rt-multi-thread", "sync
rand = "0.8"
pyo3 = { version = "0.21", features = ["extension-module", "abi3", "abi3-py38"] }
arrow = { version = "52", feature = ["pyarrow"] }
datafusion = { git = "https://github.com/apache/datafusion.git", features = ["pyarrow", "avro", "unicode_expressions"] }
datafusion-common = { git = "https://github.com/apache/datafusion.git", features = ["pyarrow"] }
datafusion-expr = { git = "https://github.com/apache/datafusion.git" }
datafusion-functions-nested = { git = "https://github.com/apache/datafusion.git" }
datafusion = { version = "41.0.0", features = ["pyarrow", "avro", "unicode_expressions"] }
datafusion-common = { version = "41.0.0", features = ["pyarrow"] }
datafusion-expr = { version = "41.0.0" }
datafusion-functions-nested = { version = "41.0.0" }
# TODO: is this just re-exported?
datafusion-optimizer = { git = "https://github.com/apache/datafusion.git" }
datafusion-optimizer = { version = "41.0.0" }
# TODO: is this just re-exported?
datafusion-sql = { git = "https://github.com/apache/datafusion.git" }
datafusion-substrait = { git = "https://github.com/apache/datafusion.git", optional = true }
datafusion-sql = { version = "41.0.0" }
datafusion-substrait = { version = "41.0.0", optional = true }
prost = "0.12" # keep in line with `datafusion-substrait`
prost-types = "0.12" # keep in line with `datafusion-substrait`
uuid = { version = "1.9", features = ["v4"] }
Expand Down

0 comments on commit 10d8290

Please sign in to comment.