<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/lib/std.rc, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2011-12-06T20:13:04+00:00</updated>
<entry>
<title>Establish 'core' library separate from 'std'.</title>
<updated>2011-12-06T20:13:04+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2011-12-06T00:46:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=447414f00774d37d934867f5a476cf00e1f95423'/>
<id>urn:sha1:447414f00774d37d934867f5a476cf00e1f95423</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stdlib: Implement some preliminary libuv bindings</title>
<updated>2011-12-01T18:24:21+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2011-12-01T07:26:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7476a39e47d4c5d8e1a349adf590ee329501a0a8'/>
<id>urn:sha1:7476a39e47d4c5d8e1a349adf590ee329501a0a8</id>
<content type='text'>
std::uv is intended to be low-level, exactly mirroring the C API.
Difficult to continue the implementation now without scheduler
improvements.
</content>
</entry>
<entry>
<title>Add c_vec library to std.</title>
<updated>2011-11-28T18:41:45+00:00</updated>
<author>
<name>Joshua Wise</name>
<email>joshua@joshuawise.com</email>
</author>
<published>2011-11-23T10:15:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c2eb084b4c273682b06fcaf285399ec9bf6fd0cb'/>
<id>urn:sha1:c2eb084b4c273682b06fcaf285399ec9bf6fd0cb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: math: renaming and documentation fixes</title>
<updated>2011-11-25T00:21:14+00:00</updated>
<author>
<name>Stefan Plantikow</name>
<email>stefan.plantikow@googlemail.com</email>
</author>
<published>2011-11-24T19:43:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=891528fb7376ddd3cbaf9f77c75807f16c16d77b'/>
<id>urn:sha1:891528fb7376ddd3cbaf9f77c75807f16c16d77b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: factored f32 and f64 out from math</title>
<updated>2011-11-25T00:21:14+00:00</updated>
<author>
<name>Stefan Plantikow</name>
<email>stefan.plantikow@googlemail.com</email>
</author>
<published>2011-11-23T17:37:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=97fc39b214a559d5525199512d81a6e0476c28bc'/>
<id>urn:sha1:97fc39b214a559d5525199512d81a6e0476c28bc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rustc: Add a path attribute for crate directives</title>
<updated>2011-11-24T23:31:18+00:00</updated>
<author>
<name>Haitao Li</name>
<email>lihaitao@gmail.com</email>
</author>
<published>2011-11-22T04:31:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3e303af86b5380c7d53a8879d883cd36ad2a69a6'/>
<id>urn:sha1:3e303af86b5380c7d53a8879d883cd36ad2a69a6</id>
<content type='text'>
The path information was an optional "filename" component of crate
directive AST. It is now replaced by an attribute with metadata named
"path".

With this commit, a directive

  mod foo = "foo.rs";

should be written as:

  #[path = "foo.rs"]
  mod foo;

Closes issue #906.
</content>
</entry>
<entry>
<title>Remove last traces of auth keyword</title>
<updated>2011-11-23T10:02:27+00:00</updated>
<author>
<name>Marijn Haverbeke</name>
<email>marijnh@gmail.com</email>
</author>
<published>2011-11-23T09:30:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a8dd52ed3649d2dba3474a80254d1cc5180797f3'/>
<id>urn:sha1:a8dd52ed3649d2dba3474a80254d1cc5180797f3</id>
<content type='text'>
The reference now has an empty hole where the auth keyword used to be.
Changing the keyword table seems to require manually sorting the
keywords and putting them back into some kind of arcane interleaved
order. I'll open an issue to actually fix this.

Closes #1211
</content>
</entry>
<entry>
<title>std: add fs::mkdir(), rng.gen_str(), tempfile::mkdtemp()</title>
<updated>2011-11-22T22:43:18+00:00</updated>
<author>
<name>Elly Jones</name>
<email>elly@leptoquark.net</email>
</author>
<published>2011-11-09T04:35:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c11c44abc03c52a0fd8dd58fcc80d571cb69e70e'/>
<id>urn:sha1:c11c44abc03c52a0fd8dd58fcc80d571cb69e70e</id>
<content type='text'>
Signed-off-by: Elly Jones &lt;elly@leptoquark.net&gt;
</content>
</entry>
<entry>
<title>stdlib: added (2,3,4)-valued logic ADTs</title>
<updated>2011-11-21T19:15:19+00:00</updated>
<author>
<name>Stefan Plantikow</name>
<email>stefan.plantikow@googlemail.com</email>
</author>
<published>2011-11-19T06:44:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1c9f97b6694001a572fe8a085fb9a8cfc6ca44b8'/>
<id>urn:sha1:1c9f97b6694001a572fe8a085fb9a8cfc6ca44b8</id>
<content type='text'>
This is useful for writing caches and perhaps in typestate predicates.
It also adds a companion module for bool with from_str, to_str, ... fns.
</content>
</entry>
<entry>
<title>stdlib: Remove sio and aio. Bitrotted.</title>
<updated>2011-11-11T01:59:26+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2011-11-11T01:59:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6c108aade9e7666bf8d984115f6c44a5f7cf5907'/>
<id>urn:sha1:6c108aade9e7666bf8d984115f6c44a5f7cf5907</id>
<content type='text'>
</content>
</entry>
</feed>
