diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2018-03-17 11:07:50 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-03-17 13:04:13 +0100 |
| commit | 89ecb0d5424f4eb72de70c0b7b0c3fb819273728 (patch) | |
| tree | b171b3c20942a20dca222c90080d4888d7b5619e /src/libstd | |
| parent | c5f020a64014d461ce997ea6e2e801f17aa44b08 (diff) | |
| download | rust-89ecb0d5424f4eb72de70c0b7b0c3fb819273728.tar.gz rust-89ecb0d5424f4eb72de70c0b7b0c3fb819273728.zip | |
Mark deprecated unstable SipHasher13 as a doc-hidden impl detail of HashMap.
It stays in libcore rather than being private in HashMap’s module because it shares code with the deprecated *stable* `SipHasher` type.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 70a1f82c9a1..62bef4bc499 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -267,7 +267,7 @@ #![feature(fn_traits)] #![feature(fnbox)] #![feature(generic_param_attrs)] -#![feature(hashmap_hasher)] +#![feature(hashmap_internals)] #![feature(heap_api)] #![feature(i128)] #![feature(i128_type)] @@ -298,7 +298,6 @@ #![feature(raw)] #![feature(rustc_attrs)] #![feature(stdsimd)] -#![feature(sip_hash_13)] #![feature(slice_bytes)] #![feature(slice_concat_ext)] #![feature(slice_internals)] |
