From 37af8d79cd6118b51d7b7cf5795423177198123f Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 28 Dec 2021 07:17:08 -0500 Subject: [PATCH] Workaround build failure: Pin quote to 1.0.10 --- ballista/rust/core/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index 29e1ead0fec9d..16ec07acc98db 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -43,6 +43,9 @@ tonic = "0.5" uuid = { version = "0.8", features = ["v4"] } chrono = { version = "0.4", default-features = false } +# workaround for https://github.com/apache/arrow-datafusion/issues/1498 +# should be able to remove when we update arrow-flight +quote = "=1.0.10" arrow-flight = { version = "6.4.0" } datafusion = { path = "../../../datafusion", version = "6.0.0" }