| Age | Commit message (Expand) | Author | Lines |
| 2012-08-30 | Fix json test. | Graydon Hoare | -9/+7 |
| 2012-08-30 | Change str : Eq to use memcmp. | Graydon Hoare | -11/+11 |
| 2012-08-30 | test: Add a test for unused constants in foreign modules | Patrick Walton | -0/+8 |
| 2012-08-30 | rustc: Make the compiler no longer ICE on unused foreign constants | Patrick Walton | -2/+8 |
| 2012-08-30 | Bump version to 0.4 | Brian Anderson | -32/+32 |
| 2012-08-30 | Add an impl path::WindowsPath : Eq. | Graydon Hoare | -0/+9 |
| 2012-08-30 | Fix another Eq missing case. | Graydon Hoare | -0/+6 |
| 2012-08-30 | Start moving core::hash to support a Hash trait. Add to_bytes::IterBytes trait. | Graydon Hoare | -34/+408 |
| 2012-08-30 | libstd: Fix another std test | Patrick Walton | -0/+7 |
| 2012-08-30 | libstd: More test fixes | Patrick Walton | -1/+26 |
| 2012-08-30 | libcore: Fix test issues harder | Patrick Walton | -1/+1 |
| 2012-08-30 | libcore: Fix test issues | Patrick Walton | -4/+4 |
| 2012-08-30 | cargo: Fix some lack of knowledge of basic algebraic identities | Patrick Walton | -69/+12 |
| 2012-08-30 | libcore: Add missing unit.rs | Patrick Walton | -0/+17 |
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -23/+192 |
| 2012-08-29 | libstd: Fix some build breakage | Patrick Walton | -2/+2 |
| 2012-08-29 | libcore: Fix build breakage | Patrick Walton | -1/+1 |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -327/+2984 |
| 2012-08-29 | std: More camel casing | Brian Anderson | -50/+59 |
| 2012-08-29 | Fix breakage | Brian Anderson | -3/+3 |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -26/+34 |
| 2012-08-29 | Camel case more std types | Brian Anderson | -41/+55 |
| 2012-08-29 | std: Camel case some constructors | Brian Anderson | -86/+85 |
| 2012-08-29 | core: Don't normalize paths by default. Add a normalize method | Brian Anderson | -25/+52 |
| 2012-08-29 | core: Export sys::Closure | Brian Anderson | -0/+1 |
| 2012-08-29 | Add sys::Closure type | Brian Anderson | -0/+27 |
| 2012-08-29 | Add vec::truncate, for efficiently shortening a vector. | Jed Davis | -0/+24 |
| 2012-08-29 | Rename resolve3 -> resolve. | Graydon Hoare | -39/+39 |
| 2012-08-29 | Replace core::path with contents of core::path2. Back to one path module. | Graydon Hoare | -985/+480 |
| 2012-08-29 | Allow extern mods to be anonymous | Tim Chevalier | -20/+54 |
| 2012-08-29 | Merge pull request #3299 from jld/mz-forceinline | Graydon Hoare | -1/+1 |
| 2012-08-29 | vtable.rs: adjust formatting, correct build error | Niko Matsakis | -215/+224 |
| 2012-08-29 | Refactor representation of borrowing so that it is tracked by fn_ctxt and not... | Niko Matsakis | -486/+514 |
| 2012-08-29 | Fix MZ_FORCEINLINE define to work with GCC 4.7.1. | Jed Davis | -1/+1 |
| 2012-08-28 | libcore: fix a typo exporting Err. | Erick Tryzelaar | -1/+1 |
| 2012-08-28 | Comment the default case in typeck::check::vtable::lookup_vtable copiously | Tim Chevalier | -10/+98 |
| 2012-08-28 | In ty::impl_traits, treat structs properly | Tim Chevalier | -15/+24 |
| 2012-08-28 | correct name of SendMap trait | Niko Matsakis | -1/+1 |
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -763/+783 |
| 2012-08-28 | Add lint modes for uses of @ and ~ pointers, in general. | Graydon Hoare | -1/+119 |
| 2012-08-28 | Compress metadata section. Seems a minor speed win, major space win. | Graydon Hoare | -2/+1971 |
| 2012-08-28 | Import Result, Ok, and Err by default. Closes #3287 | Brian Anderson | -0/+3 |
| 2012-08-28 | Convert core::pipes to camel case | Brian Anderson | -232/+314 |
| 2012-08-28 | refactor send_map impl to be based on structs | Niko Matsakis | -19/+47 |
| 2012-08-28 | rustc: Add cfg(gc) and cfg(nogc). | Elliott Slaughter | -9/+16 |
| 2012-08-28 | Fix a test that mysteriously resolves correctly when not check-fasting | Brian Anderson | -1/+1 |
| 2012-08-28 | De-abstract std::sort:qsort3, which uses only the trait-based lt/eq. | Jed Davis | -9/+8 |
| 2012-08-27 | make rand code use slices | Niko Matsakis | -14/+14 |
| 2012-08-27 | preliminary work on making future's sendable | Niko Matsakis | -29/+89 |
| 2012-08-27 | libcore: Replace a bunch of "== None" with ".is_none()". | Patrick Walton | -80/+80 |