Skip to content

Commit 40109d4

Browse files
diliopfacebook-github-bot
authored andcommitted
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](rust-lang/rust#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](rust-lang/rust#118487)) from [#95228](rust-lang/rust#95228) * `buck2` OSS toolchain bump to `nightly-2023-12-11` just before [#11878](rust-lang/rust-clippy#11878) and a bunch of other clippy lint renames. Reviewed By: dtolnay Differential Revision: D53776867 fbshipit-source-id: 78db83d8cdd6b0abae2b94ed1075e67b501fcd73
1 parent 3ace4fb commit 40109d4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

starlark/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,7 @@
393393
// Features we use
394394
#![allow(stable_features)]
395395
#![allow(unknown_lints)] // for clippy::tuple_array_conversions
396+
#![cfg_attr(rust_nightly, allow(internal_features))]
396397
#![cfg_attr(rust_nightly, feature(const_type_id))]
397398
#![cfg_attr(rust_nightly, feature(core_intrinsics))]
398399
#![cfg_attr(rust_nightly, feature(cfg_sanitize))]

starlark_map/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#![cfg_attr(rust_nightly, feature(core_intrinsics))]
2626
#![cfg_attr(rust_nightly, feature(portable_simd))]
2727
#![cfg_attr(rust_nightly, feature(cfg_version))]
28+
#![cfg_attr(rust_nightly, allow(internal_features))]
2829

2930
mod hash_value;
3031
mod hashed;

0 commit comments

Comments
 (0)