| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -100/+0 | |
| This only changes the directory names; it does not change the "real" metadata names. | ||||
| 2013-05-18 | Convert various inner doc-comments to outer doc-comments | Brendan Zabarauskas | -2/+2 | |
| 2013-05-08 | Remove #[cfg(notest)] and use #[cfg(not(test))] to cooincide with #[cfg(debug)] | Zack Corr | -5/+5 | |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -3/+5 | |
| 2013-04-14 | core: remove unnecessary unsafe blocks/functions | Alex Crichton | -2/+2 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -4/+4 | |
| 2013-03-26 | librustc: Enforce that `extern mod` directives come first, then `use` ↵ | Patrick Walton | -2/+1 | |
| directives, then items. Resolve them in this order as well. | ||||
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -3/+3 | |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -14/+14 | |
| 2013-03-21 | libsyntax: Remove `@const` from the language | Patrick Walton | -8/+28 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -4/+4 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -4/+1 | |
| 2013-02-21 | Put unique allocs in managed heap when they might contain managed boxes. | Graydon Hoare | -0/+6 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -2/+2 | |
| rs=implflipping | ||||
| 2013-02-07 | librustc: Lots of de-muting. rs=demuting | Patrick Walton | -0/+6 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -4/+0 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-17 | librustc: Implement write guards for borrowing `@mut` to `&` or `&mut`. ↵ | Patrick Walton | -0/+2 | |
| r=nmatsakis | ||||
| 2013-01-14 | Inlining methods/functions in core. | gifnksm | -0/+7 | |
| Also inlining some functions which take functions as arguments. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -1/+3 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -3/+1 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -1/+3 | |
| module scope. r=tjc | ||||
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -0/+1 | |
| contain at least two components. r=graydon | ||||
| 2012-12-03 | core: rename box to managed. Close #4079. | Graydon Hoare | -0/+62 | |
| 2012-09-10 | Rename the poorly named Managed<T> type to Mut<T>. | Niko Matsakis | -143/+0 | |
| The Mut<T> type is intended to allow freezable data stuctures to be stored in `@mut` boxes. Currently this causes borrowck to be very conserivative since it cannot prove that you are not modifying such a structure while iterating over it, for example. But if you do `@Mut<T>` instead of `@mut T`, you will effectively convert borrowck's static checks into dynamic ones. This lets you use the e.g. send_map just like a Java Map or something else. | ||||
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -2/+2 | |
| 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 | -1/+0 | |
| 2012-08-21 | ignore should_fail tests on windows | Niko Matsakis | -0/+3 | |
| 2012-08-21 | add tests to manage, fix test breakage I inadvertently introduced | Niko Matsakis | -3/+82 | |
| 2012-08-21 | implement a map testing benchmark | Niko Matsakis | -0/+62 | |
| This involved some other changes: - add a managed<T> wrapper that makes send_map usable from @-data - implement map<K,V> for managed<send_map> Unit tests are coming. | ||||
