| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -916/+0 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -3/+3 | |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -10/+10 | |
| fail!() used to require owned strings but can handle static strings now. Also, it can pass its arguments to fmt!() on its own, no need for the caller to call fmt!() itself. | ||||
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+3 | |
| Also fix up all the fallout elsewhere throughout core. It's really nice being able to have the prelude. | ||||
| 2013-05-11 | Warning police | Tim Chevalier | -5/+3 | |
| 2013-05-10 | Stop using the '<->' operator | Alex Crichton | -20/+9 | |
| 2013-05-08 | libcore: Fix tests. | Patrick Walton | -3/+4 | |
| 2013-05-08 | libcore: Remove mutable fields from pipes | Patrick Walton | -148/+169 | |
| 2013-05-02 | libcore: Export core::from_str::FromStr from core::prelude | gifnksm | -3/+3 | |
| 2013-05-01 | pipes: use finally to fix pipes::try_recv | Erick Tryzelaar | -18/+13 | |
| 2013-05-01 | core: Remove use of deprecated `drop` | Erick Tryzelaar | -3/+6 | |
| 2013-04-29 | test: Fix more tests. | Patrick Walton | -2/+2 | |
| 2013-04-29 | librustc: Rename `reinterpret_cast` to `transmute_copy` and remove the intrinsic | Patrick Walton | -6/+6 | |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -11/+11 | |
| 2013-04-23 | Removing more unnecessary unsafe blocks throughout | Alex Crichton | -3/+1 | |
| 2013-04-18 | core: Remove #[doc(hidden)] attributes and atomic wrapper functions from pipes | Brian Anderson | -48/+2 | |
| Neither are needed | ||||
| 2013-04-18 | core: Just reordering some code | Brian Anderson | -81/+81 | |
| 2013-04-18 | core: Remove pipes::spawn_service, spawn_service_recv | Brian Anderson | -46/+0 | |
| These are only used in test cases; pipes isn't the right place for them; they are unnecessary. Conflicts: src/libcore/rt/uv/mod.rs | ||||
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ↵ | Huon Wilson | -3/+3 | |
| pub mod or pub fn). | ||||
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -12/+12 | |
| 2013-03-28 | Removing unused imports | Alex Crichton | -2/+2 | |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -1/+1 | |
| 2013-03-26 | option: rm functions that duplicate methods | Daniel Micay | -10/+9 | |
| 2013-03-23 | replace impls with `deriving` where applicable | Andrew Paseltiner | -8/+1 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -1/+1 | |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -7/+7 | |
| 2013-03-21 | librustc: Forbid destructors from being attached to any structs that might ↵ | Patrick Walton | -6/+10 | |
| contain non-Owned fields. r=nmatsakis | ||||
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -1/+1 | |
| notation. rs=delifetiming | ||||
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -1/+1 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -13/+13 | |
| 2013-03-07 | libcore: Remove `extern mod { ... }` from libcore. rs=deexterning | Patrick Walton | -14/+20 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -1/+1 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-05 | auto merge of #5233 : bstrie/rust/deimpselfcore, r=graydon | bors | -14/+14 | |
| 2013-03-04 | De-implicit-self libcore | Ben Striegel | -14/+14 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -2/+0 | |
| 2013-03-02 | libcore: Remove `fn@`, `fn~`, and `fn&` from libcore. rs=defun | Patrick Walton | -10/+8 | |
| 2013-03-01 | Rename core::private to core::unstable. #4743 | Brian Anderson | -2/+2 | |
| 2013-02-28 | Remove code that was awaiting a snapshot | Tim Chevalier | -2/+0 | |
| * Disallow structural records everywhere * Remove all #[cfg(stage0)] stuff * Remove the last deprecated modes in libcore * Un-xfail a test | ||||
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -2/+2 | |
| 2013-02-27 | Turn old `drop` blocks into `Drop` traits | Ben Striegel | -1/+4 | |
| 2013-02-26 | libcore: Move Cell to core and de-~mut core and std | Patrick Walton | -10/+7 | |
| 2013-02-21 | core: Extract comm from pipes. #4742 | Brian Anderson | -344/+9 | |
| 2013-02-21 | auto merge of #5069 : pcwalton/rust/plussing-2, r=pcwalton | bors | -2/+2 | |
| 2013-02-21 | librustc: Separate the rest of the trait bounds with `+` and stop parsing ↵ | Patrick Walton | -2/+2 | |
| space-separated ones. rs=plussing | ||||
| 2013-02-20 | auto merge of #5063 : pcwalton/rust/plussing, r=pcwalton | bors | -40/+40 | |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -40/+40 | |
| 2013-02-20 | Created libcore/private/intrinsics.rs, which aims to contain every | Matthijs 'Thiez' Hofstra | -17/+7 | |
| rustc intrinsic. Several files in libcore have been changed to use these intrinsics. As of yet, none of the intrinsics are documented. | ||||
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ↵ | Patrick Walton | -3/+3 | |
| slipped through. r=tjc | ||||
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -67/+67 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -16/+16 | |
| rs=implflipping | ||||
