| Age | Commit message (Expand) | Author | Lines |
| 2013-08-19 | Add externfn macro and correctly label fixed_stack_segments | Niko Matsakis | -6/+49 |
| 2013-08-18 | auto merge of #8551 : huonw/rust/speling, r=alexcrichton | bors | -5/+5 |
| 2013-08-18 | More spelling corrections. | Huon Wilson | -1/+1 |
| 2013-08-16 | doc: convert remaining uses of core:: to std::. | Huon Wilson | -4/+4 |
| 2013-08-15 | Add ToCStr method .with_c_str() | Kevin Ballard | -5/+5 |
| 2013-08-12 | fix build with the new snapshot compiler | Daniel Micay | -14/+0 |
| 2013-08-06 | Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing... | Erick Tryzelaar | -1/+1 |
| 2013-08-04 | Open files in binary mode. Closes #3948 | darkf | -1/+1 |
| 2013-08-04 | Merge remote-tracking branch 'remotes/origin/master' into str-remove-null | Erick Tryzelaar | -8/+8 |
| 2013-08-04 | Remove trailing null from strings | Erick Tryzelaar | -0/+6 |
| 2013-08-04 | std: replace str::as_c_str with std::c_str | Erick Tryzelaar | -7/+7 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -8/+8 |
| 2013-08-02 | librustc: Disallow "unsafe" for external functions | Patrick Walton | -3/+3 |
| 2013-08-01 | std: Replace `for` with `do { .. }` expr where internal iterators are used | blake2-ppc | -8/+9 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -10/+11 |
| 2013-07-30 | implement pointer arithmetic with GEP | Daniel Micay | -1/+1 |
| 2013-07-28 | ReaderUtil::each_byte shouldn't include EOF byte -- Issue #5056 | Stepan Koltsov | -4/+38 |
| 2013-07-27 | std and rustc: cleanup uses of result methods | Erick Tryzelaar | -27/+25 |
| 2013-07-27 | cleanup .chain and .chain_err + fixing other files | maikklein | -6/+6 |
| 2013-07-27 | cleanup .unwrap and .unwrap_err fixing io tests | Erick Tryzelaar | -4/+2 |
| 2013-07-23 | std: remove str::to_owned and str::raw::slice_bytes_owned | Erick Tryzelaar | -1/+1 |
| 2013-07-23 | std: move StrUtil::as_c_str into StrSlice | Erick Tryzelaar | -1/+1 |
| 2013-07-23 | std: remove os::as_c_charp | Erick Tryzelaar | -14/+13 |
| 2013-07-20 | librustc: Remove `pub extern` and `priv extern` from the language. | Patrick Walton | -4/+4 |
| 2013-07-17 | librustc: Remove the `Copy` bound from the language. | Patrick Walton | -3/+0 |
| 2013-07-17 | test: Fix tests. | Patrick Walton | -20/+20 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -12/+11 |
| 2013-07-08 | Replaces the free-standing functions in f32, &c. | Jens Nockert | -2/+3 |
| 2013-07-04 | Convert vec::{as_imm_buf, as_mut_buf} to methods. | Huon Wilson | -3/+3 |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -1/+3 |
| 2013-06-29 | Removing a lot of usage of '&const' | Alex Crichton | -3/+3 |
| 2013-06-28 | librustc: Disallow "mut" from distributing over bindings. | Patrick Walton | -2/+5 |
| 2013-06-28 | Convert vec::{reserve, reserve_at_least, capacity} to methods. | Huon Wilson | -1/+1 |
| 2013-06-27 | Convert vec::[mut_]slice to methods, remove vec::const_slice. | Huon Wilson | -6/+5 |
| 2013-06-26 | Work-around 'static bound requirement in io::with_bytes_reader (note: does no... | Ben Blum | -3/+10 |
| 2013-06-25 | Change finalize -> drop. | Luqman Aden | -3/+3 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -9/+9 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -2/+2 |
| 2013-06-21 | Remove all #[cfg(stage0)]-protected code | James Miller | -3/+1 |
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -1/+1 |
| 2013-06-15 | rm vec::uniq_len | Daniel Micay | -1/+1 |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -1/+1 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -2/+2 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -1/+1 |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -1/+0 |
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -2/+2 |
| 2013-06-10 | std: convert str::char_at* to methods. | Huon Wilson | -1/+1 |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -1/+1 |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -3/+5 |
| 2013-06-04 | std::io: Modernize some constructors | Philipp Brüschweiler | -33/+35 |