| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 ↵ | Patrick Walton | -8/+7 | |
| imports | ||||
| 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 | |
| Also touch up use of 'pub' and move some tests around so the tested functions don't have to be 'pub' | ||||
| 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`. ↵ | Patrick Walton | -1/+1 | |
| rs=implflipping | ||||
| 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 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 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 | |
| Conflicts: src/libcore/private.rs src/libcore/task/mod.rs src/libcore/task/spawn.rs src/libstd/net_tcp.rs src/libstd/uv_global_loop.rs src/libstd/uv_iotask.rs | ||||
| 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 ↵ | Patrick Walton | -0/+3 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -3/+0 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+3 | |
| module scope. r=tjc | ||||
| 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 | |
| contain at least two components. r=graydon | ||||
| 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 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 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 ↵ | Graydon Hoare | -0/+2 | |
| #[legacy_exports]; | ||||
| 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 ↵ | Michael Sullivan | -11/+13 | |
| unsafe/closure interactions. | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -16/+16 | |
| 2012-08-16 | Add std::comm with DuplexStream | Eric Holk | -10/+11 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -7/+7 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -3/+3 | |
| 2012-08-13 | rustc: Mostly implement region-bounded stack closures | Patrick Walton | -6/+7 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -1/+1 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -1/+1 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -2/+2 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -1/+1 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -16/+16 | |
