Skip to content

Commit

Permalink
Merge pull request #974 from korken89/fix-alloc-required
Browse files Browse the repository at this point in the history
`extern crate alloc` was added accidentally breaking downstream `no_std`
  • Loading branch information
Dirbaio authored Aug 11, 2024
2 parents 30966f3 + ee1a9e5 commit dc08e0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/phy/fuzz_injector.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
extern crate alloc;
use alloc::vec::Vec;

use crate::phy::{self, Device, DeviceCapabilities};
use crate::time::Instant;
use alloc::vec::Vec;

// This could be fixed once associated consts are stable.
const MTU: usize = 1536;
Expand Down
2 changes: 2 additions & 0 deletions src/phy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ use crate::time::Instant;
mod sys;

mod fault_injector;
#[cfg(feature = "alloc")]
mod fuzz_injector;
#[cfg(feature = "alloc")]
mod loopback;
Expand All @@ -117,6 +118,7 @@ mod tuntap_interface;
pub use self::sys::wait;

pub use self::fault_injector::FaultInjector;
#[cfg(feature = "alloc")]
pub use self::fuzz_injector::{FuzzInjector, Fuzzer};
#[cfg(feature = "alloc")]
pub use self::loopback::Loopback;
Expand Down

0 comments on commit dc08e0b

Please sign in to comment.