From 408431ba5c1c6e3571c1183e99dfdca4de089bdc Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Wed, 26 Jan 2022 22:29:25 +0100 Subject: [PATCH] Fix libafl import features in libafl_targets (#495) * fix * fix --- libafl_targets/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libafl_targets/Cargo.toml b/libafl_targets/Cargo.toml index ebc61c8d88..7ebfdee9ad 100644 --- a/libafl_targets/Cargo.toml +++ b/libafl_targets/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [features] default = ["std"] -std = [] +std = ["libafl/std"] libfuzzer = [] pointer_maps = [] sancov_pcguard_edges = [] @@ -27,7 +27,7 @@ clippy = [] # Ignore compiler warnings during clippy cc = { version = "1.0", features = ["parallel"] } [dependencies] -libafl = { path = "../libafl", version = "0.7.1", features = [] } +libafl = { path = "../libafl", version = "0.7.1", default-features = false, features = [] } rangemap = "0.1" serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib