| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-21 | core: De-export at_vec and extfmt | Brian Anderson | -52/+56 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -8/+8 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+4 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | core: Demode sys | Brian Anderson | -2/+2 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+36 | |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -16/+16 | |
| 2012-09-12 | Remove some transitional code | Brian Anderson | -56/+52 | |
| 2012-09-12 | Use a different strategy for transitioning to camel case extfmt | Brian Anderson | -5/+2 | |
| 2012-09-11 | Convert core::extfmt to camel case | Brian Anderson | -73/+266 | |
| 2012-09-10 | Make all moves explicit in libsyntax | Tim Chevalier | -2/+2 | |
| 2012-09-10 | Make all remaining moves explicit in libcore | Tim Chevalier | -12/+12 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -2/+2 | |
| 2012-09-02 | core: warn(non_camel_case_types) everywhere, with few exceptions | Brian Anderson | -0/+1 | |
| 2012-09-02 | core: deny(vecs_implicity_copyable) | Brian Anderson | -7/+7 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+18 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -17/+17 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -2/+2 | |
| 2012-08-08 | Fix number-peek code in fmt!, close #1610. | Graydon Hoare | -12/+19 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -12/+12 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -32/+33 | |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -13/+13 | |
| API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map). | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -30/+30 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -2/+2 | |
| 2012-07-27 | core: Make #fmt pure | Brian Anderson | -16/+16 | |
| 2012-07-25 | More purity to make it easier to borrow strings in format strings. | Eric Holk | -4/+4 | |
| 2012-07-25 | Allow logging slices | Eric Holk | -3/+11 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -46/+47 | |
| #2907. | ||||
| 2012-07-05 | Mostly change TODOs to FIXMEs and annotate them | Tim Chevalier | -1/+1 | |
| But, one change in io to implement a TODO suggestion (using a const u8) | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -1/+1 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -10/+10 | |
| 2012-06-28 | Make fmt use a bitmask instead of a vector of flags. Closes #1993. | Michael Sullivan | -14/+10 | |
| 2012-06-27 | Removed pretty much all the vector+ from core (issue #2719) | Eric Holk | -3/+3 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -15/+16 | |
| 2012-06-25 | core: Convert declarations to not use the trailing 'unsafe' notation | Brian Anderson | -4/+4 | |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -2/+2 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -1/+1 | |
| 2012-06-15 | Fixed a bug in extfmt where it couldn't parse unicode in format strings. | Eric Holk | -2/+3 | |
| 2012-06-01 | core: Fix handling of 0-padded floats with precision in #fmt | Brian Anderson | -3/+4 | |
| 2012-05-24 | remove dead assignments | Niko Matsakis | -1/+1 | |
| 2012-03-27 | Move some code over to iterator-for to see how it performs. | Marijn Haverbeke | -1/+1 | |
| 2012-03-23 | Remove unneeded code | Tim Chevalier | -2/+0 | |
| 2012-03-19 | rustc: Stop generating the flag_none #fmt flag. Issue #1993 | Brian Anderson | -6/+1 | |
| 2012-03-19 | core: Remove a FIXME. Closes #1992 | Brian Anderson | -1/+0 | |
| This is too vague to ever fix | ||||
| 2012-03-16 | core: Remove str::init_elt | Brian Anderson | -4/+4 | |
| This was added based on my FIXME, but I no longer believe it has a place in core::str, partly because it doesn't follow current naming conventions, and partly because it can be immitated with a one liner using str::from_chars and vec::from_elem. I have replaced the existing uses with said one-liner. | ||||
| 2012-03-15 | Address FIXMEs in extfmt / add issue numbers | Tim Chevalier | -29/+24 | |
| 2012-03-13 | Overhaul constructor naming in libs | Brian Anderson | -1/+1 | |
| 2012-03-09 | core: Convert to rustdoc | Brian Anderson | -0/+2 | |
| 2012-03-07 | add mutability annotations to libcore | Niko Matsakis | -27/+23 | |
| 2012-02-23 | Finish cleanup of core::str | Marijn Haverbeke | -12/+10 | |
| Closes #1849 | ||||
