| Age | Commit message (Expand) | Author | Lines |
| 2013-01-23 | rename send_map to hashmap | Daniel Micay | -641/+0 |
| 2013-01-22 | migrate gc.rs to LinearSet | Daniel Micay | -1/+1 |
| 2013-01-22 | add a base Container trait | Daniel Micay | -15/+11 |
| 2013-01-22 | add a container::Map trait | Daniel Micay | -50/+31 |
| 2013-01-22 | add a Mutable container trait with clear | Daniel Micay | -9/+14 |
| 2013-01-20 | fix long lines | Daniel Micay | -2/+6 |
| 2013-01-20 | add a LinearSet type (implementing the Set trait) | Daniel Micay | -2/+45 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+7 |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the neare... | Patrick Walton | -7/+0 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+7 |
| 2012-12-30 | reset LinearMap.size when expanding buckets | Tim Taubert | -0/+19 |
| 2012-12-27 | librustc: Fix the test runner, the condition system, and core test. rs=bustage | Patrick Walton | -0/+2 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -0/+6 |
| 2012-12-13 | librustc: Make `use` statements crate-relative by default. r=brson | Patrick Walton | -1/+1 |
| 2012-12-11 | core: add Eq impl to LinearMap. | Erick Tryzelaar | -0/+37 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 2012-11-07 | rustc: Support irrefutable patterns in function arguments. r=nmatsakis | Patrick Walton | -2/+2 |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -10/+10 |
| 2012-10-08 | libcore: add pop/swap/consume to SendMap | Erick Tryzelaar | -29/+126 |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -4/+4 |
| 2012-09-28 | core: Demode patterns | Brian Anderson | -2/+2 |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -12/+3 |
| 2012-09-26 | libcore: De-export ptr, send_map, and task::local_data | Patrick Walton | -18/+14 |
| 2012-09-25 | core: Mark more mods as demoded | Brian Anderson | -0/+4 |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under #[l... | Graydon Hoare | -0/+2 |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -24/+8 |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially dem... | Niko Matsakis | -1/+1 |
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -1/+1 |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 |
| 2012-09-15 | Make most send_map functions pure | Erick Tryzelaar | -19/+19 |
| 2012-09-15 | libcore: add find_ref/get_ref to SendMap trait | Erick Tryzelaar | -2/+9 |
| 2012-09-15 | libcore: send_map test simplification. | Erick Tryzelaar | -6/+2 |
| 2012-09-14 | replace with_find_ref() with find_ref(), which is just nicer to use | Niko Matsakis | -32/+26 |
| 2012-09-12 | libcore: add send_map::with_find_ref and with_get_ref. | Erick Tryzelaar | -0/+31 |
| 2012-09-12 | libcore: modernize send_map's whitespacing | Erick Tryzelaar | -46/+42 |
| 2012-09-12 | update to store map on stack, taking advantage of auto-ref | Niko Matsakis | -7/+7 |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -1/+1 |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -1/+1 |
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -4/+4 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -5/+5 |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -8/+8 |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -3/+3 |
| 2012-08-30 | Migrate core::send_map to random, keyed hashes w/ hash::Hash trait. | Graydon Hoare | -40/+33 |
| 2012-08-28 | correct name of SendMap trait | Niko Matsakis | -1/+1 |
| 2012-08-28 | refactor send_map impl to be based on structs | Niko Matsakis | -19/+47 |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -3/+3 |
| 2012-08-26 | Camel case the option type | Brian Anderson | -19/+19 |
| 2012-08-24 | Remove one last match check, in send_map | Tim Chevalier | -2/+5 |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -6/+6 |
| 2012-08-22 | convert send_map to use explicit self | Niko Matsakis | -72/+69 |