From 465275aecb94f576ce1d225f77deabc92334ba5b Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Wed, 2 Feb 2022 17:55:46 +0100 Subject: [PATCH] Allow incomplete feature (#517) suppress the specialization feature warning --- libafl/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libafl/src/lib.rs b/libafl/src/lib.rs index 5b8d7e69af..07151e6a0a 100644 --- a/libafl/src/lib.rs +++ b/libafl/src/lib.rs @@ -2,6 +2,7 @@ Welcome to `LibAFL` */ +#![allow(incomplete_features)] #![cfg_attr(not(feature = "std"), no_std)] // For `type_eq` #![cfg_attr(unstable_feature, feature(specialization))]