From 40109d4683769e8ec60f31a58abb76d0943ec356 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 --- starlark/src/lib.rs | 1 + starlark_map/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/starlark/src/lib.rs b/starlark/src/lib.rs index 06da0d43a..3e1a8e4ac 100644 --- a/starlark/src/lib.rs +++ b/starlark/src/lib.rs @@ -393,6 +393,7 @@ // Features we use #![allow(stable_features)] #![allow(unknown_lints)] // for clippy::tuple_array_conversions +#![cfg_attr(rust_nightly, allow(internal_features))] #![cfg_attr(rust_nightly, feature(const_type_id))] #![cfg_attr(rust_nightly, feature(core_intrinsics))] #![cfg_attr(rust_nightly, feature(cfg_sanitize))] diff --git a/starlark_map/src/lib.rs b/starlark_map/src/lib.rs index abf6a3933..f4df252ee 100644 --- a/starlark_map/src/lib.rs +++ b/starlark_map/src/lib.rs @@ -25,6 +25,7 @@ #![cfg_attr(rust_nightly, feature(core_intrinsics))] #![cfg_attr(rust_nightly, feature(portable_simd))] #![cfg_attr(rust_nightly, feature(cfg_version))] +#![cfg_attr(rust_nightly, allow(internal_features))] mod hash_value; mod hashed;