From 6af3171560e167d56112ab2b5b82268514243cb5 Mon Sep 17 00:00:00 2001 From: Dimitris Iliopoulos Date: Tue, 20 Feb 2024 10:31:00 -0800 Subject: [PATCH] Update platform010 & platform010-aarch64 symlinks Summary: `1.76.0` release with fixes addressing the following: * Release notes ([link](https://releases.rs/docs/1.76.0/)) * Most notable is [#118054](https://github.com/rust-lang/rust/pull/118054/) manifesting as: ``` error: unused implementer of `futures::Future` that must be used --> fbcode/mlx/metalearner/housekeeper/housekeeper.rs:213:13 | 213 | self.ping_oncall(&oncall, usecases); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: futures do nothing unless you `.await` or poll them = note: requested on the command line with `-D unused-must-use` ``` * Changes in `search_index.js` spec for `rustdoc` ([link](https://github.com/rust-lang/rust/pull/118910/files#diff-3ac57789ddcd2856a3b4f0c444f2813315179bdbe55bb945fe64fcb27b53fee5L491)) * Split of `#![feature(exposed_provenance)]` ([link](https://github.com/rust-lang/rust/pull/118487)) from [#95228](https://github.com/rust-lang/rust/issues/95228) * `buck2` OSS toolchain bump to `nightly-2023-12-11` just before [#11878](https://github.com/rust-lang/rust-clippy/pull/11878) and a bunch of other clippy lint renames. Reviewed By: dtolnay Differential Revision: D53776867 fbshipit-source-id: 78db83d8cdd6b0abae2b94ed1075e67b501fcd73 --- shed/quickcheck_arbitrary_derive/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shed/quickcheck_arbitrary_derive/src/lib.rs b/shed/quickcheck_arbitrary_derive/src/lib.rs index dc6206139..7d4bcc1a9 100644 --- a/shed/quickcheck_arbitrary_derive/src/lib.rs +++ b/shed/quickcheck_arbitrary_derive/src/lib.rs @@ -229,7 +229,7 @@ mod tests { let output = proc_macro2::TokenStream::from_str(stringify! { impl quickcheck::Arbitrary for Foo { fn arbitrary(g: &mut quickcheck::Gen) -> Self { - match g.choose((0..4).collect::>().as_slice()) { + match g.choose((0..4).collect:: >().as_slice()) { Some(&0) => Self::Foo{foo: quickcheck::Arbitrary::arbitrary(g), bar: quickcheck::Arbitrary::arbitrary(g),}, Some(&1) => Self::Bar{hello: quickcheck::Arbitrary::arbitrary(g),}, Some(&2) => Self::Baz(quickcheck::Arbitrary::arbitrary(g),),