| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-23 | Fix more windows breakage | Brian Anderson | -2/+2 | |
| 2012-09-23 | core: Fix some option-demode fallout on windows | Brian Anderson | -1/+1 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -8/+8 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -3/+2 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+11 | |
| #[legacy_exports]; | ||||
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -1/+1 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -3/+5 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-19 | libcore: unsafe mod renamed to cast | Erick Tryzelaar | -1/+1 | |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -7/+5 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -5/+7 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -2/+2 | |
| 2012-09-13 | Fix stray vec::as_buf, try to put out fire on win32. | Graydon Hoare | -1/+1 | |
| 2012-09-13 | core: Fix stray usage of vec::unsafe on FreeBSD | Brian Anderson | -1/+1 | |
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -2/+2 | |
| 2012-09-11 | Promote 'impl' from restricted keyword to strict | Brian Anderson | -4/+4 | |
| 2012-09-11 | Promote 'pub' and 'priv' from restricted to strict keywords | Brian Anderson | -2/+2 | |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -40/+39 | |
| 2012-09-10 | Make all remaining moves explicit in libcore | Tim Chevalier | -1/+1 | |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -5/+5 | |
| 2012-09-02 | Silence non-implicitly-copyable-typarams in coretest | Brian Anderson | -2/+3 | |
| 2012-09-02 | core: deny(vecs_implicity_copyable) | Brian Anderson | -1/+4 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -3/+3 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -1/+1 | |
| 2012-08-29 | Replace core::path with contents of core::path2. Back to one path module. | Graydon Hoare | -1/+1 | |
| 2012-08-27 | libcore: Replace a bunch of "== None" with ".is_none()". | Patrick Walton | -2/+2 | |
| Generally, "== None" calls into the shape glue, and it's also more useful. | ||||
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -7/+7 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -44/+44 | |
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -128/+120 | |
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -1/+1 | |
| Closes #3245 | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -1/+1 | |
| 2012-08-22 | Merge pull request #3244 from dbp/osbug | Brian Anderson | -3/+0 | |
| core: removing repeated code in os.rs homedir() test | ||||
| 2012-08-22 | Remove one last default argument mode from core::os | Ben Blum | -1/+1 | |
| 2012-08-22 | Merge pull request #3231 from killerswan/modes1 | Ben Blum | -35/+38 | |
| Remove deprecated modes from os.rs | ||||
| 2012-08-21 | core: removing repeated code in os.rs homedir() test | Daniel Patterson | -3/+0 | |
| 2012-08-21 | remove tab character | Niko Matsakis | -1/+1 | |
| 2012-08-21 | libcore: Implement a dup2 | Patrick Walton | -0/+4 | |
| 2012-08-21 | core: switching os::tmpdir() to always return a directory, by defaulting to ↵ | Daniel Patterson | -11/+14 | |
| Windows dir on windows, as per .NET | ||||
| 2012-08-21 | core: adding test for os::tmpdir() | Daniel Patterson | -0/+5 | |
| 2012-08-21 | core: adding os::tmpdir() that returns a system temporary directory if it ↵ | Daniel Patterson | -1/+38 | |
| can find one, and none otherwise. | ||||
| 2012-08-20 | Remove deprecated modes from os.rs | Kevin Cantu | -35/+38 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -7/+7 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -4/+4 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -51/+51 | |
| 2012-08-13 | rustc: Mostly implement region-bounded stack closures | Patrick Walton | -7/+5 | |
| 2012-08-07 | syntax: Make match arm parsing more restrictive again | Brian Anderson | -1/+1 | |
| Require comma separators for all expression types except the plain block | ||||
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -4/+4 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -19/+13 | |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -1/+1 | |
| API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map). | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -33/+33 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -1/+1 | |
