From 225265b2eb53bc5fb6ad406067f53f2b602db086 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Mon, 10 Jun 2024 11:43:30 -0400 Subject: [PATCH] uefi: Stop enabling error_in_core feature This feature has been stabilized in latest nightly, so no need to enable it. All the uses of it (`impl core::error::Error for for ...`) are still gated by the `unstable` feature, so there's no change for users on the stable channel. --- uefi/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/uefi/src/lib.rs b/uefi/src/lib.rs index 9a425aac6..eef044920 100644 --- a/uefi/src/lib.rs +++ b/uefi/src/lib.rs @@ -83,7 +83,6 @@ //! [spec]: https://uefi.org/specifications //! [unstable features]: https://doc.rust-lang.org/unstable-book/ -#![cfg_attr(feature = "unstable", feature(error_in_core))] #![cfg_attr(all(feature = "unstable", feature = "alloc"), feature(allocator_api))] #![cfg_attr(docsrs, feature(doc_auto_cfg))] #![no_std]