You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling tracker v0.1.0 (/Users/alamb/Software/influxdb_iox/tracker)
error[E0658]: use of unstable library feature 'partition_point': new API
--> /Users/alamb/.cargo/registry/src/github.com-1ecc6299db9ec823/arrow-4.3.0/src/compute/kernels/partition.rs:88:14
|
88 | .partition_point(|idx| {
| ^^^^^^^^^^^^^^^
|
= note: see issue #73831 <https://github.com/rust-lang/rust/issues/73831> for more information
I expect no compilation error
The text was updated successfully, but these errors were encountered:
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
Describe the bug
When I upgraded my project via
cargo update
and it picked up https://crates.io/crates/arrow/4.3.0I got the following error:
I expect no compilation error
The text was updated successfully, but these errors were encountered: