| Age | Commit message (Expand) | Author | Lines |
| 2013-01-29 | librustc: Disallow trait bounds in types, enumerations, and structure definit... | Patrick Walton | -1/+1 |
| 2013-01-28 | Revert readline optimization and add test | Brian Anderson | -3/+11 |
| 2013-01-28 | Slightly optimize read_line() | Michael Neumann | -3/+3 |
| 2013-01-24 | convert io wrapper records into structs | Erick Tryzelaar | -5/+10 |
| 2013-01-24 | core: convert io::Res over to the Drop trait | Erick Tryzelaar | -3/+6 |
| 2013-01-24 | convert most of libcore records into structs | Erick Tryzelaar | -9/+7 |
| 2013-01-13 | Merge pull request #4411 from wting/4203_rename_memcpy | Tim Chevalier | -2/+2 |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -66/+127 |
| 2013-01-10 | Rename memcpy, memmove, memset to prevent any confusion with the C equivalents. | William Ting | -2/+2 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -5/+12 |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the neare... | Patrick Walton | -12/+5 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -5/+12 |
| 2012-12-27 | librustc: Fix the test runner, the condition system, and core test. rs=bustage | Patrick Walton | -0/+6 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -0/+12 |
| 2012-12-24 | Convert core::io to use explicit self (for issue #4118 and issue #2004) | gareth | -169/+163 |
| 2012-12-13 | Replace some Eq impls with deriving_eq | Brian Anderson | -10/+1 |
| 2012-12-05 | test: Fix a bunch of test cases. rs=burning | Patrick Walton | -2/+2 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 2012-11-30 | librustc: Make `a.b()` always a method call. r=nmatsakis | Patrick Walton | -1/+1 |
| 2012-11-28 | Register snapshots | Brian Anderson | -13/+0 |
| 2012-11-25 | Ignore a should_fail test on windows | Brian Anderson | -0/+1 |
| 2012-11-24 | [libs] Remove unread_byte method from core::io::Reader | Tim Chevalier | -7/+0 |
| 2012-11-24 | Fix a bug where read(buf, len) would fail if buf was big enough and succeed i... | Gareth Daniel Smith | -1/+24 |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+13 |
| 2012-11-18 | Made more stuff pure. | Jesse Jones | -1/+1 |
| 2012-11-04 | Add more doc-comments for Reader, ReaderUtil, Writer and WriterUtil (loosely ... | Gareth Daniel Smith | -26/+115 |
| 2012-11-04 | Add size-specific int reading methods to ReaderUtil to match the existing int... | Gareth Daniel Smith | -33/+250 |
| 2012-11-03 | Fix a bug where .write([]) would always fail. | Gareth Daniel Smith | -3/+9 |
| 2012-10-23 | Remove uses of binary move - <- - from tests and libraries | Tim Chevalier | -1/+1 |
| 2012-10-18 | libcore: minor code cleanup. | Erick Tryzelaar | -2/+2 |
| 2012-10-18 | libcore: call [u8] values bytes, not bufs | Erick Tryzelaar | -46/+50 |
| 2012-10-18 | Rewrite io::ByteBuf into a struct | Erick Tryzelaar | -13/+15 |
| 2012-10-18 | Make with_bytes_reader/with_bytes_writer pure | Erick Tryzelaar | -7/+11 |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -2/+2 |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -0/+3 |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -9/+9 |
| 2012-10-01 | De-export gc and io. Part of #3583. | Graydon Hoare | -48/+48 |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -7/+7 |
| 2012-09-28 | core: Demode patterns | Brian Anderson | -3/+3 |
| 2012-09-28 | demode vec | Niko Matsakis | -3/+3 |
| 2012-09-26 | change vec::view sig to be sound (good catch @bblum) | Niko Matsakis | -2/+4 |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -9/+9 |
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -4/+13 |
| 2012-09-26 | Demode some of core::io | Tim Chevalier | -42/+44 |
| 2012-09-25 | Demode core::result | Brian Anderson | -3/+3 |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -12/+0 |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -3/+3 |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -5/+4 |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under #[l... | Graydon Hoare | -0/+3 |
| 2012-09-20 | libcore: Make BytesWriters not require shared boxes. | Patrick Walton | -4/+12 |