Skip to content

Commit

Permalink
Remove src/rngs/thread.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Oct 30, 2024
1 parent 31e6aa0 commit c5eb0da
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 46 deletions.
4 changes: 1 addition & 3 deletions src/rngs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,13 @@ mod xoshiro256plusplus;

#[cfg(feature = "std_rng")]
mod std;
#[cfg(all(feature = "std", feature = "std_rng", feature = "getrandom"))]
pub(crate) mod thread;

#[cfg(feature = "small_rng")]
pub use self::small::SmallRng;
#[cfg(feature = "std_rng")]
pub use self::std::StdRng;
#[cfg(feature = "thread_rng")]
pub use self::thread::ThreadRng;
pub use rand_trng::{rng, ThreadRng};

#[cfg(feature = "getrandom")]
pub use rand_core::OsRng;
43 changes: 0 additions & 43 deletions src/rngs/thread.rs

This file was deleted.

0 comments on commit c5eb0da

Please sign in to comment.