Skip to content

Commit 9247022

Browse files
authored
Update substrait create to depend on version of DataFusion in the repo (#4879)
1 parent 82bbaa3 commit 9247022

File tree

7 files changed

+448
-265
lines changed

7 files changed

+448
-265
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
[workspace]
19-
exclude = ["datafusion-cli"]
19+
exclude = ["datafusion-cli", "datafusion/substrait"]
2020
members = [
2121
"datafusion/common",
2222
"datafusion/core",

datafusion/substrait/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@
1717

1818
[package]
1919
name = "datafusion-substrait"
20-
version = "0.1.0"
20+
version = "16.0.0"
2121
edition = "2021"
22+
rust-version = "1.62"
2223

2324
[dependencies]
2425
async-recursion = "1.0"
25-
datafusion = "13.0"
26+
datafusion = { version = "16.0.0", path = "../core" }
2627
prost = "0.9"
2728
prost-types = "0.9"
2829
substrait = "0.2"

datafusion/substrait/src/consumer.rs

Lines changed: 228 additions & 146 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)