Skip to content

Commit

Permalink
migrate libafl_isa_mutator to libafl_0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bounti committed Oct 10, 2023
1 parent f083001 commit 42b9f57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion libafl_isa_mutator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ cc = "1"

[dependencies]
clap = { version = "3.2", features = ["default"] }
libafl = { version = "0.9" }
libafl = { version = "0.11.1" }
libafl_bolts = { version = "0.11.1" }
nix = "0.24"
num-traits = { version = "0.2", default-features = false }
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
Expand Down
8 changes: 4 additions & 4 deletions libafl_isa_mutator/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use libafl::{
bolts::{
rands::Rand, tuples::Named,
use libafl_bolts::{
rands::Rand, Named,
tuples::{tuple_list, tuple_list_type, NamedTuple},

Check warning on line 3 in libafl_isa_mutator/src/lib.rs

View workflow job for this annotation

GitHub Actions / Run rust-clippy analyzing

unused import: `NamedTuple`
HasLen

Check warning on line 4 in libafl_isa_mutator/src/lib.rs

View workflow job for this annotation

GitHub Actions / Run rust-clippy analyzing

unused import: `HasLen`
},
};
use libafl::{
// inputs::BytesInput,
corpus::Corpus,
inputs::HasBytesVec,
Expand Down

0 comments on commit 42b9f57

Please sign in to comment.