Skip to content

Commit

Permalink
Remove unecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasSte committed Jun 12, 2024
1 parent 50f7b5f commit e4c0a9f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions type-overrides/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ pub mod lazy_static {
}

pub mod rand {
pub use rand::{
distributions::*, random, rngs::*, seq::*, CryptoRng, Error, Fill, SeedableRng,
};
#[cfg(not(feature = "shuttle-test"))]
pub use rand::{thread_rng, Rng, RngCore};
pub use rand::*;
#[cfg(feature = "shuttle-test")]
pub use shuttle::rand::{thread_rng, Rng, RngCore};
}
Expand Down

0 comments on commit e4c0a9f

Please sign in to comment.