From b877ed7e0e2ad0e822c6fa853843a8a5d199d3ba Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Mon, 7 Aug 2023 10:55:08 +0200 Subject: [PATCH] Removed unused intrinsics features (#1404) --- libafl/src/lib.rs | 3 --- libafl_bolts/src/lib.rs | 3 --- 2 files changed, 6 deletions(-) diff --git a/libafl/src/lib.rs b/libafl/src/lib.rs index 42c0c8b01c..8d98cf47bf 100644 --- a/libafl/src/lib.rs +++ b/libafl/src/lib.rs @@ -6,9 +6,6 @@ Welcome to `LibAFL` #![no_std] // For `type_eq` #![cfg_attr(nightly, feature(specialization))] -// For `type_id` and owned things -#![allow(internal_features)] -#![cfg_attr(nightly, feature(intrinsics))] // For `std::simd` #![cfg_attr(nightly, feature(portable_simd))] #![warn(clippy::cargo)] diff --git a/libafl_bolts/src/lib.rs b/libafl_bolts/src/lib.rs index a2df601ac7..aa6d88d3e9 100644 --- a/libafl_bolts/src/lib.rs +++ b/libafl_bolts/src/lib.rs @@ -8,9 +8,6 @@ Welcome to `LibAFL` #![no_std] // For `type_eq` #![cfg_attr(nightly, feature(specialization))] -// For `type_id` and owned things -#![allow(internal_features)] -#![cfg_attr(nightly, feature(intrinsics))] // For `std::simd` #![cfg_attr(nightly, feature(portable_simd))] // For `core::error`