alamb commented on issue #456: URL: https://github.com/apache/arrow-rs/issues/456#issuecomment-860585543
It turns out my project had pinned the Rust toolchain to 1.51 and arrow now requires 1.52. Updating the rust-toolchain pin solves the problem ``` diff --git a/rust-toolchain b/rust-toolchain index d2d62553..d4f82037 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.51.0 \ No newline at end of file +1.52.0 \ No newline at end of file ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
