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))]