Skip to content

Commit

Permalink
Add type alias for other rand imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasSte committed Jun 10, 2024
1 parent c75a1f2 commit 4920a22
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions type-overrides/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ pub mod rand {
pub use shuttle::rand::{thread_rng, Rng, RngCore};
}

pub mod rand_original {
pub use rand::{
distributions::*, random, rngs::*, seq::*, CryptoRng, Error, Fill, SeedableRng,
};
}

pub mod sync {
#[cfg(feature = "shuttle-test")]
pub use shuttle::sync::*;
Expand Down

0 comments on commit 4920a22

Please sign in to comment.