<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcore, branch 1.3.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.3.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.3.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-08-03T18:52:20+00:00</updated>
<entry>
<title>Post merge changes to #27488</title>
<updated>2015-08-03T18:52:20+00:00</updated>
<author>
<name>Simonas Kazlauskas</name>
<email>git@kazlauskas.me</email>
</author>
<published>2015-08-03T18:52:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c5d877977a3d89ad9763b734405be41e3a041dcc'/>
<id>urn:sha1:c5d877977a3d89ad9763b734405be41e3a041dcc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>vastly expand on the mem::uninitialized docs</title>
<updated>2015-08-03T13:55:14+00:00</updated>
<author>
<name>Alexis Beingessner</name>
<email>a.beingessner@gmail.com</email>
</author>
<published>2015-08-03T05:04:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5e6973ddc5ba311ece0e2399eb2c2a49ef0d3620'/>
<id>urn:sha1:5e6973ddc5ba311ece0e2399eb2c2a49ef0d3620</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Auto merge of #27382 - brson:gate-assoc-type, r=alexcrichton</title>
<updated>2015-07-31T04:33:34+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-07-31T04:33:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8d2eb5971a9e91a9c994768055cb9fa192868699'/>
<id>urn:sha1:8d2eb5971a9e91a9c994768055cb9fa192868699</id>
<content type='text'>
There are still problems in both the design and implementation of this, so we don't want it landing in 1.2.

cc @arielb1 @nikomatsakis 

cc #27364

r? @alexcrichton 
</content>
</entry>
<entry>
<title>Auto merge of #27370 - alexcrichton:stabilize-easy, r=brson</title>
<updated>2015-07-31T02:57:34+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-07-31T02:57:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cb250b722e8c9c8b2e6dff249ce8e027dce2cd65'/>
<id>urn:sha1:cb250b722e8c9c8b2e6dff249ce8e027dce2cd65</id>
<content type='text'>
The following APIs were all marked with a `#[stable]` tag:

* process::Child::id
* error::Error::is
* error::Error::downcast
* error::Error::downcast_ref
* error::Error::downcast_mut
* io::Error::get_ref
* io::Error::get_mut
* io::Error::into_inner
* hash::Hash::hash_slice
* hash::Hasher::write_{i,u}{8,16,32,64,size}
</content>
</entry>
<entry>
<title>Auto merge of #27388 - alexcrichton:remove-curious-inner, r=brson</title>
<updated>2015-07-30T18:42:32+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-07-30T18:42:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6edc994021a6bb1922ef77f62841f01a7bdf235d'/>
<id>urn:sha1:6edc994021a6bb1922ef77f62841f01a7bdf235d</id>
<content type='text'>
This isn't actually necessary any more with the advent of `$crate` and changes
in the compiler to expand macros to `::core::$foo` in the context of a
`#![no_std]` crate.

The libcore inner module was also trimmed down a bit to the bare bones.
</content>
</entry>
<entry>
<title>Auto merge of #27385 - chris-morgan:core-panic-use-$crate, r=alexcrichton</title>
<updated>2015-07-30T12:01:41+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-07-30T12:01:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5fcaf9567691c91eb48693ba9ec234703fd4e0d0'/>
<id>urn:sha1:5fcaf9567691c91eb48693ba9ec234703fd4e0d0</id>
<content type='text'>
I’ve been sitting on this one for ages now. Silly me, if only I had got on and submitted it earlier it’d be into the stable release by now…
</content>
</entry>
<entry>
<title>Auto merge of #27052 - wthrowe:atomic_send, r=Gankro</title>
<updated>2015-07-30T04:18:50+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2015-07-30T04:18:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8b9ada599747648cd10d9971e97ddb610712b711'/>
<id>urn:sha1:8b9ada599747648cd10d9971e97ddb610712b711</id>
<content type='text'>
I think this was just missed when `Send` and `Sync` were redone, since it seems odd to not be able to use things like `Arc&lt;AtomicPtr&gt;`.  If it was intentional feel free to just close this.

I used another test as a template for writing mine, so I hope I got all the headers and stuff right.
</content>
</entry>
<entry>
<title>Feature gate associated type defaults</title>
<updated>2015-07-29T22:11:07+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-07-29T19:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a09bce1047ab5714e56891edee0feab8813ba99e'/>
<id>urn:sha1:a09bce1047ab5714e56891edee0feab8813ba99e</id>
<content type='text'>
There are multiple issues with them as designed and implemented.

cc #27364
</content>
</entry>
<entry>
<title>std: Remove the curious inner module</title>
<updated>2015-07-29T21:18:24+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-07-29T21:14:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5af6cf9fa422cb492525e139752a57d2d89f42c7'/>
<id>urn:sha1:5af6cf9fa422cb492525e139752a57d2d89f42c7</id>
<content type='text'>
This isn't actually necessary any more with the advent of `$crate` and changes
in the compiler to expand macros to `::core::$foo` in the context of a
`#![no_std]` crate.

The libcore inner module was also trimmed down a bit to the bare bones.
</content>
</entry>
<entry>
<title>Use $crate in core::panic!</title>
<updated>2015-07-29T20:29:24+00:00</updated>
<author>
<name>Chris Morgan</name>
<email>me@chrismorgan.info</email>
</author>
<published>2015-07-29T20:29:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fc5b79ce86072e469c6b80d1be53ea58d6feec76'/>
<id>urn:sha1:fc5b79ce86072e469c6b80d1be53ea58d6feec76</id>
<content type='text'>
</content>
</entry>
</feed>
