Skip to content

Commit

Permalink
Update substrait create to depend on version of DataFusion in the repo (
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove authored Jan 13, 2023
1 parent 82bbaa3 commit 9247022
Show file tree
Hide file tree
Showing 7 changed files with 448 additions and 265 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

[workspace]
exclude = ["datafusion-cli"]
exclude = ["datafusion-cli", "datafusion/substrait"]
members = [
"datafusion/common",
"datafusion/core",
Expand Down
5 changes: 3 additions & 2 deletions datafusion/substrait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@

[package]
name = "datafusion-substrait"
version = "0.1.0"
version = "16.0.0"
edition = "2021"
rust-version = "1.62"

[dependencies]
async-recursion = "1.0"
datafusion = "13.0"
datafusion = { version = "16.0.0", path = "../core" }
prost = "0.9"
prost-types = "0.9"
substrait = "0.2"
Expand Down
374 changes: 228 additions & 146 deletions datafusion/substrait/src/consumer.rs

Large diffs are not rendered by default.

Loading

0 comments on commit 9247022

Please sign in to comment.