| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -422/+0 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2013-05-19 | Register snapshots | Brian Anderson | -11/+0 | |
| 2013-05-17 | core: Wire up oneshot pipes to newsched | Brian Anderson | -5/+2 | |
| 2013-05-16 | syntax: deprecate #[auto_{en,de}code] in favour of #[deriving({En,De}codable)]. | Huon Wilson | -3/+1 | |
| Replace all instances of #[auto_*code] with the appropriate #[deriving] attribute and remove the majority of the actual code, leaving stubs to refer the user to the new syntax. | ||||
| 2013-05-10 | Stop using the '<->' operator | Alex Crichton | -6/+3 | |
| 2013-05-10 | std: Use the new `for` protocol | Alex Crichton | -0/+8 | |
| 2013-05-09 | remove vecs_implicitly_copyable from libstd/libcore | Daniel Micay | -2/+2 | |
| 2013-05-04 | Register snapshots | Brian Anderson | -45/+0 | |
| 2013-05-03 | std: Warning police | Tim Chevalier | -3/+1 | |
| 2013-05-02 | librustc: Update the serializer to work properly with INHTWAMA, removing ↵ | Patrick Walton | -3/+50 | |
| mutable fields in the process | ||||
| 2013-04-29 | librustc: Forbid type implementations on typedefs. | Patrick Walton | -5/+8 | |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -6/+0 | |
| 2013-04-18 | Small typos, year date and URL of the fbuild system for reference. | Olivier Saut | -6/+7 | |
| 2013-04-10 | Revert map.each to something which takes two parameters | Niko Matsakis | -2/+2 | |
| rather than a tuple. The current setup iterates over `BaseIter<(&'self K, &'self V)>` where 'self is a lifetime declared *in the each method*. You can't place such a type in the impl declaration. The compiler currently allows it, but this will not be legal under #5656 and I'm pretty sure it's not sound now. | ||||
| 2013-04-03 | rename Linear{Map,Set} => Hash{Map,Set} | Daniel Micay | -8/+8 | |
| 2013-04-03 | hashmap: rm linear namespace | Daniel Micay | -1/+1 | |
| 2013-04-02 | Removed all uses of Mut from workcache, replaced with @mut | Matthijs Hofstra | -72/+60 | |
| 2013-03-29 | std: add Encoder::emit_map and Decoder::read_map | Erick Tryzelaar | -14/+27 | |
| 2013-03-22 | librustc: Add explicit lifetime binders and new lifetime notation in ↵ | Patrick Walton | -8/+7 | |
| core/std/syntax/rustc | ||||
| 2013-03-22 | libstd: Remove all uses of `pure` from libstd. rs=depure | Patrick Walton | -5/+5 | |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -4/+4 | |
| 2013-03-22 | std: replace uses of old deriving attribute with new one | Andrew Paseltiner | -1/+1 | |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -1/+1 | |
| 2013-03-07 | De-implicit-self libstd | Ben Striegel | -1/+1 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -7/+20 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-05 | std: remove an unnecessary copy from workcache | Erick Tryzelaar | -1/+1 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -1/+0 | |
| 2013-03-02 | librustc: Forbid chained imports and fix the logic for one-level renaming ↵ | Patrick Walton | -1/+1 | |
| imports | ||||
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -5/+5 | |
| 2013-02-27 | librustc: Forbid `pub` or `priv` before trait implementations | Patrick Walton | -2/+2 | |
| 2013-02-27 | libsyntax: Forbid `~mut` and `~const`. rs=demuting | Patrick Walton | -2/+3 | |
| 2013-02-21 | core: Extract comm from pipes. #4742 | Brian Anderson | -1/+2 | |
| 2013-02-21 | librustc: Separate the rest of the trait bounds with `+` and stop parsing ↵ | Patrick Walton | -20/+8 | |
| space-separated ones. rs=plussing | ||||
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -2/+2 | |
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ↵ | Patrick Walton | -2/+2 | |
| slipped through. r=tjc | ||||
| 2013-02-15 | libstd: Get rid of `move`. | Luqman Aden | -18/+18 | |
| 2013-02-14 | auto merge of #4927 : sanxiyn/rust/remove-dvec, r=catamorphism | bors | -5/+3 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -3/+3 | |
| rs=implflipping | ||||
| 2013-02-14 | Remove DVec from workcache | Seo Sanghyeon | -5/+3 | |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -1/+1 | |
| 2013-02-13 | RIMOV core::vec | Ben Striegel | -2/+2 | |
| Also remove as many uses as possible of vec::cast_to_mut and cast_from_mut | ||||
| 2013-02-07 | implement BaseIter for LinearMap | Daniel Micay | -3/+3 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -0/+2 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-02-05 | Merge | Tim Chevalier | -1/+1 | |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -1/+1 | |
| 2013-01-31 | std: remove transitional code | Tim Chevalier | -21/+0 | |
| 2013-01-29 | librustc: Disallow trait bounds in types, enumerations, and structure ↵ | Patrick Walton | -0/+7 | |
| definitions. r=tjc | ||||
| 2013-01-28 | get rid of LinearMap's find_copy method | Daniel Micay | -6/+18 | |
| 2013-01-24 | remove old LinearMap constructor | Daniel Micay | -2/+2 | |
| 2013-01-23 | switch LinearMap to current constructor convention | Daniel Micay | -5/+5 | |
