Skip to content

Commit a2a464e

Browse files
Bring substrait and prost downgrades to branch-52 (#69)
* downgrade substrait (cherry picked from commit 40242b4) * downgrade prost (cherry picked from commit 3ae6613) * downgrade prost for ffi (cherry picked from commit 42c8585) * Fix clippy warning --------- Co-authored-by: Ahmed Mezghani <ahmed.mezghani@datadoghq.com>
1 parent e9f9163 commit a2a464e

8 files changed

Lines changed: 122 additions & 57 deletions

File tree

Cargo.lock

Lines changed: 116 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion/ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ datafusion-proto-common = { workspace = true }
6767
datafusion-session = { workspace = true }
6868
futures = { workspace = true }
6969
log = { workspace = true }
70-
prost = { workspace = true }
70+
prost = { version = "0.13" }
7171
semver = "1.0.27"
7272
tokio = { workspace = true }
7373

datafusion/proto-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ json = ["serde", "pbjson"]
4545
arrow = { workspace = true }
4646
datafusion-common = { workspace = true }
4747
pbjson = { workspace = true, optional = true }
48-
prost = { workspace = true }
48+
prost = { version = "0.13" }
4949
serde = { version = "1.0", optional = true }
5050

5151
[dev-dependencies]

datafusion/proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ datafusion-physical-plan = { workspace = true }
6868
datafusion-proto-common = { workspace = true }
6969
object_store = { workspace = true }
7070
pbjson = { workspace = true, optional = true }
71-
prost = { workspace = true }
71+
prost = { version = "0.13" }
7272
serde = { version = "1.0", optional = true }
7373
serde_json = { workspace = true, optional = true }
7474

datafusion/substrait/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ datafusion = { workspace = true, features = ["sql"] }
4141
half = { workspace = true }
4242
itertools = { workspace = true }
4343
object_store = { workspace = true }
44-
pbjson-types = { workspace = true }
45-
prost = { workspace = true }
46-
substrait = { version = "0.62", features = ["serde"] }
44+
pbjson-types = { version = "0.7" }
45+
prost = { version = "0.13" }
46+
substrait = { version = "0.58", features = ["serde"] }
4747
url = { workspace = true }
4848
tokio = { workspace = true, features = ["fs"] }
4949
uuid = { version = "1.19.0", features = ["v4"] }

0 commit comments

Comments
 (0)