@@ -14,7 +14,7 @@ use crate::ptr;
14
14
///
15
15
/// See: <https://131002.net/siphash>
16
16
#[ unstable( feature = "hashmap_internals" , issue = "none" ) ]
17
- #[ deprecated( since = "1.13.0" , note = "use `std::collections::hash_map ::DefaultHasher` instead" ) ]
17
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash ::DefaultHasher` instead" ) ]
18
18
#[ derive( Debug , Clone , Default ) ]
19
19
#[ doc( hidden) ]
20
20
pub struct SipHasher13 {
@@ -25,7 +25,7 @@ pub struct SipHasher13 {
25
25
///
26
26
/// See: <https://131002.net/siphash/>
27
27
#[ unstable( feature = "hashmap_internals" , issue = "none" ) ]
28
- #[ deprecated( since = "1.13.0" , note = "use `std::collections::hash_map ::DefaultHasher` instead" ) ]
28
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash ::DefaultHasher` instead" ) ]
29
29
#[ derive( Debug , Clone , Default ) ]
30
30
struct SipHasher24 {
31
31
hasher : Hasher < Sip24Rounds > ,
@@ -44,7 +44,7 @@ struct SipHasher24 {
44
44
/// it is not intended for cryptographic purposes. As such, all
45
45
/// cryptographic uses of this implementation are _strongly discouraged_.
46
46
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
47
- #[ deprecated( since = "1.13.0" , note = "use `std::collections::hash_map ::DefaultHasher` instead" ) ]
47
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash ::DefaultHasher` instead" ) ]
48
48
#[ derive( Debug , Clone , Default ) ]
49
49
pub struct SipHasher ( SipHasher24 ) ;
50
50
@@ -147,10 +147,7 @@ impl SipHasher {
147
147
/// Creates a new `SipHasher` with the two initial keys set to 0.
148
148
#[ inline]
149
149
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
150
- #[ deprecated(
151
- since = "1.13.0" ,
152
- note = "use `std::collections::hash_map::DefaultHasher` instead"
153
- ) ]
150
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash::DefaultHasher` instead" ) ]
154
151
#[ rustc_const_unstable( feature = "const_hash" , issue = "104061" ) ]
155
152
#[ must_use]
156
153
pub const fn new ( ) -> SipHasher {
@@ -160,10 +157,7 @@ impl SipHasher {
160
157
/// Creates a `SipHasher` that is keyed off the provided keys.
161
158
#[ inline]
162
159
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
163
- #[ deprecated(
164
- since = "1.13.0" ,
165
- note = "use `std::collections::hash_map::DefaultHasher` instead"
166
- ) ]
160
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash::DefaultHasher` instead" ) ]
167
161
#[ rustc_const_unstable( feature = "const_hash" , issue = "104061" ) ]
168
162
#[ must_use]
169
163
pub const fn new_with_keys ( key0 : u64 , key1 : u64 ) -> SipHasher {
@@ -175,10 +169,7 @@ impl SipHasher13 {
175
169
/// Creates a new `SipHasher13` with the two initial keys set to 0.
176
170
#[ inline]
177
171
#[ unstable( feature = "hashmap_internals" , issue = "none" ) ]
178
- #[ deprecated(
179
- since = "1.13.0" ,
180
- note = "use `std::collections::hash_map::DefaultHasher` instead"
181
- ) ]
172
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash::DefaultHasher` instead" ) ]
182
173
#[ rustc_const_unstable( feature = "const_hash" , issue = "104061" ) ]
183
174
pub const fn new ( ) -> SipHasher13 {
184
175
SipHasher13 :: new_with_keys ( 0 , 0 )
@@ -187,10 +178,7 @@ impl SipHasher13 {
187
178
/// Creates a `SipHasher13` that is keyed off the provided keys.
188
179
#[ inline]
189
180
#[ unstable( feature = "hashmap_internals" , issue = "none" ) ]
190
- #[ deprecated(
191
- since = "1.13.0" ,
192
- note = "use `std::collections::hash_map::DefaultHasher` instead"
193
- ) ]
181
+ #[ deprecated( since = "1.13.0" , note = "use `std::hash::DefaultHasher` instead" ) ]
194
182
#[ rustc_const_unstable( feature = "const_hash" , issue = "104061" ) ]
195
183
pub const fn new_with_keys ( key0 : u64 , key1 : u64 ) -> SipHasher13 {
196
184
SipHasher13 { hasher : Hasher :: new_with_keys ( key0, key1) }
0 commit comments