<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/std.rc, branch perf-tmp</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2013-05-23T04:57:05+00:00</updated>
<entry>
<title>libstd: Rename libcore to libstd and libstd to libextra; update makefiles.</title>
<updated>2013-05-23T04:57:05+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-05-17T17:45:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0c820d4123c754522b0655e9e74f692c55685bfa'/>
<id>urn:sha1:0c820d4123c754522b0655e9e74f692c55685bfa</id>
<content type='text'>
This only changes the directory names; it does not change the "real"
metadata names.
</content>
</entry>
<entry>
<title>Register snapshots</title>
<updated>2013-05-20T06:34:32+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2013-05-20T02:46:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=66319b027888ceddf024a5919e007caceaf369f3'/>
<id>urn:sha1:66319b027888ceddf024a5919e007caceaf369f3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add Scheme-style `cond!` macro to syntax::ext::expand</title>
<updated>2013-05-14T21:02:43+00:00</updated>
<author>
<name>Brendan Zabarauskas</name>
<email>bjzaba@yahoo.com.au</email>
</author>
<published>2013-05-08T15:38:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b9824e18c2b02d74bd1bf646fea5f05477ca5071'/>
<id>urn:sha1:b9824e18c2b02d74bd1bf646fea5f05477ca5071</id>
<content type='text'>
Addresses issue #6037
</content>
</entry>
<entry>
<title>Warning police</title>
<updated>2013-05-12T03:36:44+00:00</updated>
<author>
<name>Tim Chevalier</name>
<email>chevalier@alum.wellesley.edu</email>
</author>
<published>2013-05-09T20:27:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ed4186446492e141a4dc37829dc9599133d00dd0'/>
<id>urn:sha1:ed4186446492e141a4dc37829dc9599133d00dd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move flate from core to std</title>
<updated>2013-05-10T23:00:26+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2013-05-03T02:10:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7652f3ddb8f3c4fd281e6ec0bd8fc0d9b8ed857b'/>
<id>urn:sha1:7652f3ddb8f3c4fd281e6ec0bd8fc0d9b8ed857b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove vecs_implicitly_copyable from libstd/libcore</title>
<updated>2013-05-09T18:00:53+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-05-09T02:44:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2bc12635a24abf710304c06a91dbf3709cba8fd4'/>
<id>urn:sha1:2bc12635a24abf710304c06a91dbf3709cba8fd4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libstd: Start warning about mutable fields, now that they only exist in stage0</title>
<updated>2013-05-09T00:03:58+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-05-03T05:52:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ee78d811e488e2f279cfda454f8f909477dc3d6b'/>
<id>urn:sha1:ee78d811e488e2f279cfda454f8f909477dc3d6b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>auto merge of #6241 : thestinger/rust/rc, r=pcwalton</title>
<updated>2013-05-07T05:00:37+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2013-05-07T05:00:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bf748e50017ab7cdb0f703ec9438793226d43a22'/>
<id>urn:sha1:bf748e50017ab7cdb0f703ec9438793226d43a22</id>
<content type='text'>
To provide a reference counted pointer type with deterministic
destruction once managed boxes are switched over to a garbage
collector. Unlike managed boxes, these can be moved instead of just
copied/cloned which is helpful for avoiding reference counts.

Needs #5601 to be fixed in order for safety to be provided without the current ugly workaround of making the pointers contain `Option&lt;@()&gt;` and `Option&lt;@mut ()&gt;` (which are just set to `None`).

@brson: r?
</content>
</entry>
<entry>
<title>add task-local reference counted smart pointers</title>
<updated>2013-05-06T21:03:20+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-05-04T23:51:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3d526d1af369472944b65e23c665a62c3254619d'/>
<id>urn:sha1:3d526d1af369472944b65e23c665a62c3254619d</id>
<content type='text'>
To provide a reference counted pointer type with deterministic
destruction once managed boxes are switched over to a garbage
collector. Unlike managed boxes, these can be moved instead of just
copied/cloned which is helpful for avoiding reference counts.
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze</title>
<updated>2013-05-06T20:10:31+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2013-05-06T20:10:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2e4790ca061cd256ab4cb63a269ecf688e25278c'/>
<id>urn:sha1:2e4790ca061cd256ab4cb63a269ecf688e25278c</id>
<content type='text'>
</content>
</entry>
</feed>
