Skip to content

Commit

Permalink
Remove libafl_libfuzzer while it remains unstable (#4933)
Browse files Browse the repository at this point in the history
  • Loading branch information
addisoncrump authored and konstin committed Jun 13, 2023
1 parent 9f4010d commit 68dde51
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 23 deletions.
11 changes: 0 additions & 11 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ edition = "2021"
[features]
default = ["libfuzzer"]
full-idempotency = []
libafl = ["libafl_libfuzzer"]
libafl_merge = ["libafl", "libafl_libfuzzer/merge"]
libfuzzer = ["libfuzzer-sys/link_libfuzzer"]

[package.metadata]
cargo-fuzz = true

[dependencies]
arbitrary = { version = "1.3.0", features = ["derive"] }
libafl_libfuzzer = { git = "https://github.com/AFLplusplus/LibAFL.git", branch = "libfuzzer", optional = true }
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false }
ruff = { path = "../crates/ruff" }
ruff_python_ast = { path = "../crates/ruff_python_ast" }
Expand Down
3 changes: 0 additions & 3 deletions fuzz/fuzz_targets/ruff_fix_validity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

#![no_main]

#[cfg(feature = "libafl")]
extern crate libafl_libfuzzer;

use libfuzzer_sys::{fuzz_target, Corpus};
use ruff::settings::Settings;
use std::sync::OnceLock;
Expand Down
3 changes: 0 additions & 3 deletions fuzz/fuzz_targets/ruff_parse_idempotency.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

#![no_main]

#[cfg(feature = "libafl")]
extern crate libafl_libfuzzer;

use libfuzzer_sys::{fuzz_target, Corpus};
use ruff_python_ast::source_code::round_trip;
use similar::TextDiff;
Expand Down
3 changes: 0 additions & 3 deletions fuzz/fuzz_targets/ruff_parse_simple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

#![no_main]

#[cfg(feature = "libafl")]
extern crate libafl_libfuzzer;

use libfuzzer_sys::{fuzz_target, Corpus};
use ruff_python_ast::source_code::round_trip;

Expand Down

0 comments on commit 68dde51

Please sign in to comment.