rust/src/libsyntax/ext/deriving
Alex Crichton 9774b7e64b rollup merge of #22480: alexcrichton/hashv3
This commit is an implementation of [RFC 823][rfc] which is another pass over
the `std::hash` module for stabilization. The contents of the module were not
entirely marked stable, but some portions which remained quite similar to the
previous incarnation are now marked `#[stable]`. Specifically:

[rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0823-hash-simplification.md

* `std::hash` is now stable (the name)
* `Hash` is now stable
* `Hash::hash` is now stable
* `Hasher` is now stable
* `SipHasher` is now stable
* `SipHasher::new` and `new_with_keys` are now stable
* `Hasher for SipHasher` is now stable
* Many `Hash` implementations are now stable

All other portions of the `hash` module remain `#[unstable]` as they are less
commonly used and were recently redesigned.

This commit is a breaking change due to the modifications to the `std::hash` API
and more details can be found on the [RFC][rfc].

Closes #22467
[breaking-change]
2015-02-18 14:32:03 -08:00
..
cmp Don't use std:: paths in syntax extensions when compiling a #![no_std] crate 2015-02-07 10:49:57 -08:00
generic Opt for .cloned() over .map(|x| x.clone()) etc. 2015-02-18 00:56:07 +00:00
bounds.rs Don't use std:: paths in syntax extensions when compiling a #![no_std] crate 2015-02-07 10:49:57 -08:00
clone.rs Made Self a keyword. 2015-02-12 22:04:31 +01:00
decodable.rs Made Self a keyword. 2015-02-12 22:04:31 +01:00
default.rs Made Self a keyword. 2015-02-12 22:04:31 +01:00
encodable.rs Don't use std:: paths in syntax extensions when compiling a #![no_std] crate 2015-02-07 10:49:57 -08:00
hash.rs std: Stabilize the hash module 2015-02-18 08:26:20 -08:00
mod.rs Fix fallout in libsyntax from RFC 599. Clarity and efficiency seems to be mostly improved, to my eye. 2015-02-16 10:55:37 -05:00
primitive.rs Made Self a keyword. 2015-02-12 22:04:31 +01:00
rand.rs Made Self a keyword. 2015-02-12 22:04:31 +01:00
show.rs Don't use std:: paths in syntax extensions when compiling a #![no_std] crate 2015-02-07 10:49:57 -08:00