Skip to content

Commit

Permalink
Remove deprecated EntropyRng
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Mar 9, 2020
1 parent 3abd83a commit ca75582
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 81 deletions.
76 changes: 0 additions & 76 deletions src/rngs/entropy.rs

This file was deleted.

5 changes: 0 additions & 5 deletions src/rngs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,12 @@

pub mod adapter;

#[cfg(feature = "std")] mod entropy;
pub mod mock; // Public so we don't export `StepRng` directly, making it a bit
// more clear it is intended for testing.
#[cfg(feature = "small_rng")] mod small;
#[cfg(feature = "std_rng")] mod std;
#[cfg(all(feature = "std", feature = "std_rng"))] pub(crate) mod thread;

#[allow(deprecated)]
#[cfg(feature = "std")]
pub use self::entropy::EntropyRng;

#[cfg(feature = "small_rng")] pub use self::small::SmallRng;
#[cfg(feature = "std_rng")] pub use self::std::StdRng;
#[cfg(all(feature = "std", feature = "std_rng"))] pub use self::thread::ThreadRng;
Expand Down

0 comments on commit ca75582

Please sign in to comment.