| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-06-25 | Rename all files with the 'rc' extension | Alex Crichton | -267/+0 | |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -3/+4 | |
| I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway. | ||||
| 2013-06-11 | std: replace str::{starts,ends}_with with the method. | Huon Wilson | -2/+2 | |
| 2013-06-08 | remove deprecated vec::{is_empty, len} functions | Daniel Micay | -1/+1 | |
| 2013-06-04 | std::cell: Modernize constructors | Philipp Brüschweiler | -2/+2 | |
| Part of #3853 | ||||
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -3/+10 | |
| 2013-05-28 | compiletest: Add #[no_core] to fix check-stage1. | Luqman Aden | -0/+1 | |
| 2013-05-23 | cleanup warnings from compiletest | Erick Tryzelaar | -36/+36 | |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd ↵ | Patrick Walton | -2/+5 | |
| to libextra | ||||
| 2013-05-19 | reduce the usage of explicit version markers | Daniel Micay | -1/+1 | |
| 2013-05-14 | compiletest: Remove #[allow(vecs_implicitly_copyable)] | Alex Crichton | -27/+38 | |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -2/+2 | |
| 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-11 | Warning police | Tim Chevalier | -1/+0 | |
| 2013-05-06 | auto merge of #6150 : yichoi/rust/arm-test-pull, r=brson | bors | -1/+21 | |
| Support #5297 install.mk : install-runtime-target added for conveneice automatically push runtime library to android device test.mk : expanded to support android test automation with adb compiletest : expanded to support android test automation with adb | ||||
| 2013-05-04 | compiletest: remove --host and cleanup | Young-il Choi | -19/+10 | |
| 2013-05-04 | compiletest: fix decision rule to run and cleanup | Young-il Choi | -3/+5 | |
| 2013-05-02 | compiletest: configurable test dir for ARM | Young-il Choi | -1/+4 | |
| 2013-05-02 | Remove 'Local Variable' comments | Brendan Zabarauskas | -7/+0 | |
| 2013-05-01 | compiletest: expanded to ARM test automation | Young-il Choi | -1/+25 | |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -3/+0 | |
| 2013-04-10 | Bump version to 0.7-pre | Brian Anderson | -2/+2 | |
| 2013-04-09 | Bump version to 0.7-pre | Brian Anderson | -2/+2 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -1/+1 | |
| 2013-03-26 | librustc: Enforce that `extern mod` directives come first, then `use` ↵ | Patrick Walton | -6/+7 | |
| directives, then items. Resolve them in this order as well. | ||||
| 2013-03-26 | option: rm functions that duplicate methods | Daniel Micay | -3/+1 | |
| 2013-03-18 | Add a way to run the test suite with the new scheduler | Brian Anderson | -1/+4 | |
| TESTARGS=--newrt make check-stage1-rpass Conflicts: src/rt/rustrt.def.in | ||||
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -1/+1 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -1/+0 | |
| 2013-03-02 | librustdoc: Remove `fn@`, `fn~`, and `fn&` from compiletest, fuzzer, ↵ | Patrick Walton | -1/+1 | |
| rustdoc, and rt. rs=defun | ||||
| 2013-03-02 | librustc: Forbid chained imports and fix the logic for one-level renaming ↵ | Patrick Walton | -7/+7 | |
| imports | ||||
| 2013-02-21 | Remove the last bits of structural records from tests/rustc/rusti/rustpkg. | Luqman Aden | -17/+18 | |
| 2013-02-15 | compiletest: Get rid of `move`. | Luqman Aden | -1/+1 | |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -3/+3 | |
| 2013-02-13 | rustc and std: teach about #[bench], modernize to use quote_expr! some. | Graydon Hoare | -5/+11 | |
| 2013-02-09 | Add debug info tests | Brian Leibig | -1/+4 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -7/+8 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -3/+3 | |
| 2013-01-30 | librustdoc: De-export compiletest, combine-tests, libcargo, libfuzzer, and ↵ | Patrick Walton | -21/+14 | |
| librustdoc. rs=deexporting | ||||
| 2013-01-28 | compiletest: Allow legacy records | Tim Chevalier | -0/+1 | |
| But also remove most uses of structural records. | ||||
| 2013-01-24 | remove remaining is_not_empty functions/methods | Daniel Micay | -1/+1 | |
| 2013-01-24 | convert most of libstd over to structs | Erick Tryzelaar | -11/+4 | |
| 2013-01-09 | A collection of refactorings that I found it hard/tiresome to divide: | Niko Matsakis | -1/+1 | |
| - Make `extern fn()` assignable to any closure type, rather than a subtype. - Remove unused int_ty_set and float_ty_set - Refactor variable unification and make it more DRY - Do fn sub/lub/glb on the level of fn_sig - Rename infer::to_str::ToStr to infer::to_str::InferStr - Capitalize names of various types - Correct hashing of FnMeta - Convert various records-of-fns into structs-of-fns. This is both eliminating use of deprecated features and more forwards compatible with fn reform. r=pcwalton | ||||
| 2012-12-21 | bump 0.5 => 0.6, redirect some URLs in docs. | Graydon Hoare | -2/+2 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-28 | Merge remote-tracking branch 'brson/companion' into incoming | Brian Anderson | -0/+192 | |
| Conflicts: src/compiletest/compiletest.rs src/libcargo/cargo.rs src/libcore/core.rs src/librustc/rustc.rs src/librustdoc/rustdoc.rc | ||||
| 2012-11-26 | Remove the crate language | Brian Anderson | -0/+192 | |
| 2012-10-12 | bump version to 0.5. | Graydon Hoare | -2/+2 | |
| 2012-09-28 | Add allow(deprecated_\*) to syntax, rustc, rustdoc, et al | Brian Anderson | -0/+2 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+7 | |
| #[legacy_exports]; | ||||
| 2012-09-18 | Add allow(non_camel_case_types) to unconverted crates | Brian Anderson | -0/+1 | |
