<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcoretest/hash/mod.rs, branch 1.0.0-beta</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.0.0-beta</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.0.0-beta'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-03-05T07:08:33+00:00</updated>
<entry>
<title>Remove integer suffixes where the types in compiled code are identical.</title>
<updated>2015-03-05T07:08:33+00:00</updated>
<author>
<name>Eduard Burtescu</name>
<email>edy.burt@gmail.com</email>
</author>
<published>2015-03-03T08:42:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e64670888a2839ba75237b1934c440c4c319b1bb'/>
<id>urn:sha1:e64670888a2839ba75237b1934c440c4c319b1bb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Auto merge of #22920 - tshepang:remove-some-warnings, r=huonw</title>
<updated>2015-03-04T12:16:51+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-03-04T12:16:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bdf6e4fcf5ed8b8fe3c281040414e4f6a6afb8d6'/>
<id>urn:sha1:bdf6e4fcf5ed8b8fe3c281040414e4f6a6afb8d6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Switched to Box::new in many places.</title>
<updated>2015-03-03T20:05:55+00:00</updated>
<author>
<name>Felix S. Klock II</name>
<email>pnkfelix@pnkfx.org</email>
</author>
<published>2015-02-15T08:52:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0d5bcb14adb71900a99f06b92485de7e019734c2'/>
<id>urn:sha1:0d5bcb14adb71900a99f06b92485de7e019734c2</id>
<content type='text'>
Many of the modifications putting in `Box::new` calls also include a
pointer to Issue 22405, which tracks going back to `box &lt;expr&gt;` if
possible in the future.

(Still tried to use `Box&lt;_&gt;` where it sufficed; thus some tests still
have `box_syntax` enabled, as they use a mix of `box` and `Box::new`.)

Precursor for overloaded-`box` and placement-`in`; see Issue 22181.
</content>
</entry>
<entry>
<title>remove some compiler warnings</title>
<updated>2015-03-01T07:35:57+00:00</updated>
<author>
<name>Tshepang Lekhonkhobe</name>
<email>tshepang@gmail.com</email>
</author>
<published>2015-02-28T18:07:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=55ce45e7b52a0a360cf88cba71f59f7d3e9b2346'/>
<id>urn:sha1:55ce45e7b52a0a360cf88cba71f59f7d3e9b2346</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Round 1 fixes and rebase conflicts</title>
<updated>2015-02-18T23:27:42+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-02-18T22:39:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=365bd9a9e3b9dafa98e26982353fd28a6ca1efef'/>
<id>urn:sha1:365bd9a9e3b9dafa98e26982353fd28a6ca1efef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rollup merge of #22497: nikomatsakis/suffixes</title>
<updated>2015-02-18T22:35:01+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-02-18T22:35:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5250a82f7917d6f9ec590e7e762bfd036e21ef74'/>
<id>urn:sha1:5250a82f7917d6f9ec590e7e762bfd036e21ef74</id>
<content type='text'>
Conflicts:
	src/librustc_trans/trans/tvec.rs
</content>
</entry>
<entry>
<title>std: Stabilize the `hash` module</title>
<updated>2015-02-18T16:26:20+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-02-18T04:48:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f83e23ad7c464c242c2d7ace7212d323980b2bca'/>
<id>urn:sha1:f83e23ad7c464c242c2d7ace7212d323980b2bca</id>
<content type='text'>
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]
</content>
</entry>
<entry>
<title>Convert required suffixes into a use of `as`.</title>
<updated>2015-02-18T14:09:13+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2015-02-17T14:48:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=01615b04c6e79fa2e99281b94e6518fb2b505486'/>
<id>urn:sha1:01615b04c6e79fa2e99281b94e6518fb2b505486</id>
<content type='text'>
</content>
</entry>
<entry>
<title>`for x in xs.iter()` -&gt; `for x in &amp;xs`</title>
<updated>2015-02-02T18:40:18+00:00</updated>
<author>
<name>Jorge Aparicio</name>
<email>japaricious@gmail.com</email>
</author>
<published>2015-01-31T17:20:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d5d7e6565a4034b93d19be1edafd20730a4276bc'/>
<id>urn:sha1:d5d7e6565a4034b93d19be1edafd20730a4276bc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Kill more `isize`s</title>
<updated>2015-01-31T16:40:40+00:00</updated>
<author>
<name>Tobias Bucher</name>
<email>tobiasbucher5991@gmail.com</email>
</author>
<published>2015-01-31T16:23:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b4a43f3864e394959a7d3c3efae6da85bdc59c71'/>
<id>urn:sha1:b4a43f3864e394959a7d3c3efae6da85bdc59c71</id>
<content type='text'>
</content>
</entry>
</feed>
