| Age | Commit message (Expand) | Author | Lines |
| 2014-03-27 | doc: Update the tutorial about bounds for traits | Alex Crichton | -8/+8 |
| 2014-03-27 | Fix fallout of removing default bounds | Alex Crichton | -40/+42 |
| 2014-03-25 | libstd: Document the following modules: | Patrick Walton | -2/+3 |
| 2014-03-24 | auto merge of #12900 : alexcrichton/rust/rewrite-sync, r=brson | bors | -1/+1 |
| 2014-03-23 | std: Move NativeMutex from &mut self to &self | Alex Crichton | -1/+1 |
| 2014-03-22 | native: Fix a possible deadlock in spawn | Alex Crichton | -107/+105 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -1/+0 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -1/+1 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -9/+8 |
| 2014-03-15 | Test fixes and rebase conflicts | Alex Crichton | -1/+1 |
| 2014-03-15 | log: Introduce liblog, the old std::logging | Alex Crichton | -14/+4 |
| 2014-03-13 | auto merge of #12855 : alexcrichton/rust/shutdown, r=brson | bors | -0/+5 |
| 2014-03-13 | io: Bind to shutdown() for TCP streams | Alex Crichton | -0/+5 |
| 2014-03-13 | std: Rename Chan/Port types and constructor | Alex Crichton | -78/+76 |
| 2014-03-12 | Remove remaining nolink usages.(fixes #12810) | lpy | -1/+0 |
| 2014-03-05 | std: Move libnative task count bookkeeping to std | Alex Crichton | -1/+1 |
| 2014-03-05 | native: Fix usage of a deallocated mutex | Alex Crichton | -10/+11 |
| 2014-03-05 | native: Move from usleep() to nanosleep() | Alex Crichton | -6/+20 |
| 2014-03-05 | native: Stop using readdir() | Alex Crichton | -5/+11 |
| 2014-02-28 | auto merge of #12616 : alexcrichton/rust/size, r=huonw | bors | -2/+2 |
| 2014-02-28 | std: Avoid using "{:?}" in format strings | Alex Crichton | -2/+2 |
| 2014-03-01 | Publicise types/add #[allow(visible_private_types)] to a variety of places. | Huon Wilson | -0/+2 |
| 2014-02-27 | native: Recognize EISDIR | Alex Crichton | -0/+8 |
| 2014-02-27 | rustc: Use libnative for the compiler | Alex Crichton | -0/+1 |
| 2014-02-27 | native: Improve windows file handling | Alex Crichton | -1018/+1124 |
| 2014-02-24 | auto merge of #12445 : huonw/rust/less-unsafe, r=alexcrichton | bors | -8/+8 |
| 2014-02-23 | Roll std::run into std::io::process | Alex Crichton | -36/+65 |
| 2014-02-24 | native: be more const correct with the FFI calls. | Huon Wilson | -8/+8 |
| 2014-02-23 | auto merge of #12311 : brson/rust/unstable, r=alexcrichton | bors | -2/+2 |
| 2014-02-23 | std: Move intrinsics to std::intrinsics. | Brian Anderson | -2/+2 |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -17/+36 |
| 2014-02-21 | Changed NonCamelCaseTypes lint to warn by default | mr.Shu | -4/+15 |
| 2014-02-20 | Mass rename if_ok! to try! | Alex Crichton | -8/+8 |
| 2014-02-19 | librustc: Remove unique vector patterns from the language. | Patrick Walton | -19/+17 |
| 2014-02-18 | auto merge of #12317 : huonw/rust/utf16, r=alexcrichton | bors | -1/+3 |
| 2014-02-19 | str: add a function for truncating a vector of u16 at NUL. | Huon Wilson | -1/+2 |
| 2014-02-18 | std: make str::from_utf16 return an Option. | Huon Wilson | -1/+2 |
| 2014-02-16 | Implement named pipes for windows, touch up unix | Alex Crichton | -237/+666 |
| 2014-02-16 | Move unix pipes implementation to pipe_unix.rs | Alex Crichton | -307/+312 |
| 2014-02-16 | Implement Unix domain sockets in libnative | Geoffroy Couprie | -2/+358 |
| 2014-02-16 | Allow configuration of uid/gid/detach on processes | Alex Crichton | -21/+74 |
| 2014-02-17 | Remove CloneableTuple and ImmutableTuple traits | Brendan Zabarauskas | -2/+2 |
| 2014-02-16 | std: Rename unstable::mutex::Mutex to StaticNativeMutex. | Huon Wilson | -4/+4 |
| 2014-02-16 | std: add an RAII unlocker to Mutex. | Huon Wilson | -4/+2 |
| 2014-02-11 | Rewrite channels yet again for upgradeability | Alex Crichton | -6/+7 |
| 2014-02-09 | auto merge of #12136 : alexcrichton/rust/issue-12123, r=brson | bors | -1/+1 |
| 2014-02-09 | Fix the signature of CreateSymbolicLinkW | Alex Crichton | -1/+1 |
| 2014-02-09 | std: Move byteswap functions to mem | Brian Anderson | -3/+2 |
| 2014-02-09 | std: Add init and uninit to mem. Replace direct intrinsic usage | Brian Anderson | -17/+17 |
| 2014-02-05 | Implement clone() for TCP/UDP/Unix sockets | Alex Crichton | -64/+113 |