diff options
| author | ltdk <usr@ltdk.xyz> | 2023-10-13 02:44:19 -0400 |
|---|---|---|
| committer | ltdk <usr@ltdk.xyz> | 2023-11-02 20:35:20 -0400 |
| commit | 8337e86b28b9cdab7250e39710a1c81b99aeeb8d (patch) | |
| tree | a64a6c81265c4f270f95b56c0f1e39c12b727eb0 /library/std/src/hash/mod.rs | |
| parent | 075409ddd9bf30602c7654e37127e1dbbb460871 (diff) | |
| download | rust-8337e86b28b9cdab7250e39710a1c81b99aeeb8d.tar.gz rust-8337e86b28b9cdab7250e39710a1c81b99aeeb8d.zip | |
Add insta-stable std::hash::{DefaultHasher, RandomState} exports
Diffstat (limited to 'library/std/src/hash/mod.rs')
| -rw-r--r-- | library/std/src/hash/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/hash/mod.rs b/library/std/src/hash/mod.rs index 63abed3ce74..bd9bbf29875 100644 --- a/library/std/src/hash/mod.rs +++ b/library/std/src/hash/mod.rs @@ -87,5 +87,5 @@ pub(crate) mod random; #[stable(feature = "rust1", since = "1.0.0")] pub use core::hash::*; -// #[stable(feature = "std_hash_exports", since = "CURRENT_RUSTC_VERSION")] -pub(crate) use self::random::{DefaultHasher, RandomState}; +#[stable(feature = "std_hash_exports", since = "CURRENT_RUSTC_VERSION")] +pub use self::random::{DefaultHasher, RandomState}; |
