From abdb7c29962856b4ff22d5721d57a2d3e15e4e8c Mon Sep 17 00:00:00 2001 From: Marco C Date: Tue, 25 Jun 2024 16:48:16 +0200 Subject: [PATCH] bolts: fix warning about `error_in_core` now stable (#2337) the feature `error_in_core` has been stable since 1.81.0-nightly and no longer requires an attribute to enable --- libafl_bolts/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/libafl_bolts/src/lib.rs b/libafl_bolts/src/lib.rs index 1a9efaba89..f8b4ea0bea 100644 --- a/libafl_bolts/src/lib.rs +++ b/libafl_bolts/src/lib.rs @@ -11,8 +11,6 @@ #![cfg_attr(nightly, feature(specialization))] // For `std::simd` #![cfg_attr(nightly, feature(portable_simd))] -// For `core::error` -#![cfg_attr(nightly, feature(error_in_core))] #![warn(clippy::cargo)] #![allow(ambiguous_glob_reexports)] #![deny(clippy::cargo_common_metadata)]