| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-09 | auto merge of #6345 : seanmoon/rust/fix-typos, r=sanxiyn | bors | -1/+1 | |
| Hi there, Really enjoying Rust. Noticed a few typos so I searched around for a few more--here's some fixes. Ran `make check` and got `summary of 24 test runs: 4868 passed; 0 failed; 330 ignored`. Thanks! Sean | ||||
| 2013-05-08 | librustc: Stop parsing modes and remove them entirely from the language | Patrick Walton | -1/+1 | |
| 2013-05-09 | Fix typos | Sean Moon | -1/+1 | |
| 2013-05-06 | Adust arena test: can no longer allocate recursively | Niko Matsakis | -3/+0 | |
| 2013-05-04 | Register snapshots | Brian Anderson | -59/+0 | |
| 2013-05-03 | std: Warning police | Tim Chevalier | -2/+1 | |
| 2013-05-02 | librustc: Update the serializer to work properly with INHTWAMA, removing ↵ | Patrick Walton | -2/+2 | |
| mutable fields in the process | ||||
| 2013-05-02 | libstd: De-mut arena | Patrick Walton | -51/+64 | |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -1/+0 | |
| 2013-04-20 | Replaced many instances of reinterpret_cast with transmute | Matthijs Hofstra | -16/+16 | |
| 2013-04-10 | libstd: changes to in response to #5656 | Niko Matsakis | -6/+62 | |
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -1/+1 | |
| I believe this patch incorporates all expected syntax changes from extern function reform (#3678). You can now write things like: extern "<abi>" fn foo(s: S) -> T { ... } extern "<abi>" mod { ... } extern "<abi>" fn(S) -> T The ABI for foreign functions is taken from this syntax (rather than from an annotation). We support the full ABI specification I described on the mailing list. The correct ABI is chosen based on the target architecture. Calls by pointer to C functions are not yet supported, and the Rust type of crust fns is still *u8. | ||||
| 2013-03-26 | libcore: Change `[const T]` to `const [T]` everywhere | Patrick Walton | -1/+1 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -1/+1 | |
| 2013-03-22 | libstd: Remove all uses of `pure` from libstd. rs=depure | Patrick Walton | -1/+1 | |
| 2013-03-21 | librustc: Forbid destructors from being attached to any structs that might ↵ | Patrick Walton | -0/+1 | |
| contain non-Owned fields. r=nmatsakis | ||||
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -3/+3 | |
| notation. rs=delifetiming | ||||
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -1/+1 | |
| and obsolete `-` mode altogether (it *was* parsed as `+` mode). | ||||
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -3/+3 | |
| 2013-03-07 | libstd: Remove `extern mod { ... }` from libstd. rs=deexterning | Patrick Walton | -9/+17 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -8/+8 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-04 | Adding missing imports for tests, and gate off others | Alex Crichton | -2/+2 | |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -1/+0 | |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -1/+1 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -1/+1 | |
| rs=implflipping | ||||
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -1/+1 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -2/+0 | |
| 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 | -1/+1 | |
| 2013-01-24 | convert most of libstd over to structs | Erick Tryzelaar | -5/+15 | |
| 2013-01-24 | librustc: Make C functions unsafe | Patrick Walton | -3/+7 | |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -1/+3 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+1 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -1/+0 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -0/+1 | |
| module scope. r=tjc | ||||
| 2012-12-27 | libstd: Fix a bunch of resolve errors in tests. rs=fire | Patrick Walton | -0/+1 | |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ↵ | Patrick Walton | -3/+11 | |
| contain at least two components. r=graydon | ||||
| 2012-12-23 | std: Mark some functions as pure | Chris Peterson | -1/+1 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-29 | librustc: Make the Drop trait use explicit self | Patrick Walton | -1/+1 | |
| 2012-11-14 | Convert libstd to use the Drop trait | Ben Striegel | -1/+4 | |
| 2012-11-14 | Revert "Convert libstd to use the Drop trait" | Brian Anderson | -4/+1 | |
| This reverts commit 28c7a251514919a2d7bdf6c67b8edf5eed9043db. | ||||
| 2012-11-14 | Convert libstd to use the Drop trait | Ben Striegel | -1/+4 | |
| 2012-10-20 | Remove old fixed-length vector syntax | Ben Striegel | -2/+2 | |
| 2012-10-05 | Finally removing all uses of by-mut-ref | Tim Chevalier | -115/+0 | |
| The code for the mode itself is still there. | ||||
| 2012-10-05 | Demode some code using by-mutbl-ref; warn about by-mutbl-ref | Tim Chevalier | -0/+115 | |
| The parser now warns about use of mutbl-ref mode, though it's kind of a lie since this commit doesn't remove support for the mode. Changed move_val_init to have stage0 and stage1/2 versions, the latter of which is demoded. Changed the type that the typechecker expects the move_val_init intrinsic to have. After this is pushed, I can make a new snapshot, which will remove the need for the stage0 versions. | ||||
| 2012-09-28 | De-export std::{time, prettyprint{,2}, arena}. Part of #3583. | Graydon Hoare | -7/+3 | |
| 2012-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -1/+0 | |
| 2012-09-26 | std: Demode more of list and treemap | Brian Anderson | -1/+1 | |
| 2012-09-26 | libcore: De-mode at_vec | Patrick Walton | -3/+3 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+2 | |
| #[legacy_exports]; | ||||
