Skip to content

Commit

Permalink
use alloc not std
Browse files Browse the repository at this point in the history
  • Loading branch information
addisoncrump committed Nov 20, 2023
1 parent 16e617d commit a41121d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libafl/src/stages/string.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
//! Stages which analysis common to Unicode-style mutations
use alloc::{rc::Rc, vec::Vec};
use alloc::{collections::VecDeque, rc::Rc, vec::Vec};
use core::marker::PhantomData;
use std::collections::VecDeque;

use bitvec::{bitvec, vec::BitVec};
use libafl_bolts::{impl_serdeany, Error};
Expand Down

0 comments on commit a41121d

Please sign in to comment.