From 39f263299366cc732284171bf1ad5e39314a0f13 Mon Sep 17 00:00:00 2001 From: Dimitris Iliopoulos Date: Wed, 9 Nov 2022 19:37:29 -0800 Subject: [PATCH] update to Rust 1.65.0 Summary: Added `fbcode` symlinks for `platform010` & `platform010-aarch64` and addressed the following fixes: * Account for stabilized [`#![feature(backtrace)]`](https://github.com/rust-lang/rust/pull/99573) and [`#![feature(generic_associated_types)]`](https://github.com/rust-lang/rust/pull/99573) * Account for removal of [`#![feature(result_into_ok_or_err)]`](https://github.com/rust-lang/rust/pull/100604) * Account for migration of [`std::io::ReadBuf` to `std::io::BorrowBuf|BorrowCursor`](https://github.com/rust-lang/rust/pull/97015) * Account for [`Error` trait move into core](https://github.com/rust-lang/rust/pull/99917) * Account for `#[warn(non_camel_case_types)]` * Various function signature, lifetime requirement changes and lint fixes Reviewed By: zertosh Differential Revision: D40923615 fbshipit-source-id: f7ac2828d74edeae39aae517172207b0ee998a59 --- shed/failure_ext/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/shed/failure_ext/src/lib.rs b/shed/failure_ext/src/lib.rs index e0f099283..fee6bab4b 100644 --- a/shed/failure_ext/src/lib.rs +++ b/shed/failure_ext/src/lib.rs @@ -7,7 +7,6 @@ * of this source tree. */ -#![cfg_attr(fbcode_build, feature(backtrace))] #![cfg_attr(fbcode_build, feature(error_generic_member_access))] #![cfg_attr(fbcode_build, feature(provide_any))] #![deny(warnings, missing_docs, clippy::all, rustdoc::broken_intra_doc_links)]