From 3bf3172928d8fbf565b9ecf7622f4ed89028cc85 Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Sun, 6 Aug 2023 22:03:34 +0100 Subject: [PATCH] fix bolts build, intrinsics is an internal feature. (#1402) --- libafl/src/lib.rs | 1 + libafl_bolts/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/libafl/src/lib.rs b/libafl/src/lib.rs index 53af2add39..42c0c8b01c 100644 --- a/libafl/src/lib.rs +++ b/libafl/src/lib.rs @@ -7,6 +7,7 @@ Welcome to `LibAFL` // 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))] diff --git a/libafl_bolts/src/lib.rs b/libafl_bolts/src/lib.rs index 1f27b00c17..a2df601ac7 100644 --- a/libafl_bolts/src/lib.rs +++ b/libafl_bolts/src/lib.rs @@ -9,6 +9,7 @@ Welcome to `LibAFL` // 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))]