Skip to content

Commit 234ea04

Browse files
authored
Delete introspection feature from libafl_libfuzzer (#2349)
* fix * a * delete it
1 parent 602bce4 commit 234ea04

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

libafl_libfuzzer/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ document-features = ["dep:document-features"]
3232
## Enables the derive macros for the arbitrary dependency, transparently forwarded from libfuzzer-sys
3333
arbitrary-derive = ["libfuzzer-sys/arbitrary-derive"]
3434

35-
## Enables fuzzer introspection with LibAFL's `introspection` feature
36-
introspection = []
37-
3835
## Enables forking in the fuzzer runtime for restarting managers for Unix systems (on by default)
3936
fork = []
4037

libafl_libfuzzer/build.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ fn main() {
6060
if cfg!(any(feature = "fork")) {
6161
features.push("fork");
6262
}
63-
if cfg!(any(feature = "introspection")) {
64-
features.push("libafl/introspection");
65-
}
6663

6764
if !features.is_empty() {
6865
command.arg("--features").arg(features.join(","));

0 commit comments

Comments
 (0)