| Age | Commit message (Expand) | Author | Lines |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -2/+2 |
| 2013-05-09 | auto merge of #6345 : seanmoon/rust/fix-typos, r=sanxiyn | bors | -1/+1 |
| 2013-05-08 | libcore: Remove mutable fields from the task builder API | Patrick Walton | -3/+8 |
| 2013-05-09 | Fix typos | Sean Moon | -1/+1 |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -1/+1 |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -3/+3 |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -3/+0 |
| 2013-04-18 | core::comm: Modernize constructors to use `new` | Brian Anderson | -1/+1 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -2/+2 |
| 2013-03-11 | Remove uses of log | Brian Anderson | -13/+12 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -7/+0 |
| 2013-03-02 | libstd: Remove `fn@`, `fn~`, and `fn&` from libstd. rs=defun | Patrick Walton | -2/+3 |
| 2013-03-02 | librustc: Forbid chained imports and fix the logic for one-level renaming imp... | Patrick Walton | -8/+7 |
| 2013-03-01 | Rename core::private to core::unstable. #4743 | Brian Anderson | -2/+2 |
| 2013-02-28 | Fix implicit leaks of imports throughout libraries | Alex Crichton | -0/+2 |
| 2013-02-21 | core: Extract comm from pipes. #4742 | Brian Anderson | -2/+2 |
| 2013-02-15 | libstd: Get rid of `move`. | Luqman Aden | -2/+2 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -1/+1 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -2/+2 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -2/+0 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -5/+3 |
| 2013-01-25 | Merge remote-tracking branch 'brson/nocommupstream' | Brian Anderson | -105/+100 |
| 2013-01-24 | Stop using oldcomm in uv_global_loop tests | Brian Anderson | -17/+18 |
| 2013-01-23 | core: Remove private::chan_from_global_ptr. #3915 | Brian Anderson | -2/+2 |
| 2013-01-23 | std: Convert uv_global_loop to use pipes | Brian Anderson | -55/+51 |
| 2013-01-23 | libsyntax: Remove `fn() unsafe { ... }`. r=graydon | Patrick Walton | -117/+137 |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -1/+1 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+3 |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the neare... | Patrick Walton | -3/+0 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+3 |
| 2012-12-28 | libstd: Fix tests. rs=bustage | Patrick Walton | -0/+1 |
| 2012-12-27 | libstd: Fix a bunch of resolve errors in tests. rs=fire | Patrick Walton | -0/+8 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -3/+8 |
| 2012-12-14 | Rename core::comm to core::oldcomm | Brian Anderson | -15/+14 |
| 2012-12-13 | librustc: Make `use` statements crate-relative by default. r=brson | Patrick Walton | -2/+2 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -5/+5 |
| 2012-10-01 | De-export std::{uv, uv_ll, uv_iotask, uv_global_loop}. Part of #3583. | Graydon Hoare | -5/+1 |
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -2/+2 |
| 2012-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -1/+0 |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under #[l... | Graydon Hoare | -0/+2 |
| 2012-09-19 | std: Demode uv::global_loop | Brian Anderson | -0/+3 |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -1/+1 |
| 2012-09-11 | Promote 'pub' and 'priv' from restricted to strict keywords | Brian Anderson | -1/+1 |
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -9/+9 |
| 2012-08-29 | std: More camel casing | Brian Anderson | -7/+7 |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -7/+7 |
| 2012-08-24 | Add a bunch more unsafe blocks to prepare for the new semantics of unsafe/clo... | Michael Sullivan | -11/+13 |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -16/+16 |
| 2012-08-16 | Add std::comm with DuplexStream | Eric Holk | -10/+11 |