@@ -87,7 +87,6 @@ impl BuildHasher for FixedState {
87
87
/// speed keyed hashing algorithm intended for use in in-memory hashmaps.
88
88
///
89
89
/// aHash is designed for performance and is NOT cryptographically secure.
90
- #[ deprecated( note = "Will be required to use the hash library of your choice." ) ]
91
90
pub type HashMap < K , V > = hashbrown:: HashMap < K , V , BuildHasherDefault < AHasher > > ;
92
91
93
92
/// A stable hash map implementing aHash, a high speed keyed hashing algorithm
@@ -97,14 +96,13 @@ pub type HashMap<K, V> = hashbrown::HashMap<K, V, BuildHasherDefault<AHasher>>;
97
96
/// of insertions and deletions and not a random source.
98
97
///
99
98
/// aHash is designed for performance and is NOT cryptographically secure.
100
- #[ deprecated( note = "Will be required to use the hash library of your choice." ) ]
99
+ #[ deprecated( note = "Will be required to use the hash library of your choice. Alias for: hashbrown::HashMap<K, V, FixedState> " ) ]
101
100
pub type StableHashMap < K , V > = hashbrown:: HashMap < K , V , FixedState > ;
102
101
103
102
/// A [`HashSet`][hashbrown::HashSet] implementing aHash, a high
104
103
/// speed keyed hashing algorithm intended for use in in-memory hashmaps.
105
104
///
106
105
/// aHash is designed for performance and is NOT cryptographically secure.
107
- #[ deprecated( note = "Will be required to use the hash library of your choice." ) ]
108
106
pub type HashSet < K > = hashbrown:: HashSet < K , BuildHasherDefault < AHasher > > ;
109
107
110
108
/// A stable hash set implementing aHash, a high speed keyed hashing algorithm
@@ -114,7 +112,7 @@ pub type HashSet<K> = hashbrown::HashSet<K, BuildHasherDefault<AHasher>>;
114
112
/// of insertions and deletions and not a random source.
115
113
///
116
114
/// aHash is designed for performance and is NOT cryptographically secure.
117
- #[ deprecated( note = "Will be required to use the hash library of your choice." ) ]
115
+ #[ deprecated( note = "Will be required to use the hash library of your choice. Alias for: hashbrown::HashMap<K, V, FixedState> " ) ]
118
116
pub type StableHashSet < K > = hashbrown:: HashSet < K , FixedState > ;
119
117
120
118
/// A pre-hashed value of a specific type. Pre-hashing enables memoization of hashes that are expensive to compute.
0 commit comments