| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -4/+3 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-03 | Remove crud | Tim Chevalier | -1/+0 | |
| 2012-10-03 | Remove uses of + mode from libstd | Tim Chevalier | -12/+13 | |
| More or less the same as my analogous commit for libcore. Had to remove the forbid(deprecated_modes) pragma from some files -- will restore it after the snapshot. | ||||
| 2012-10-03 | De-export std::{json, getopts}. Part of #3583. | Graydon Hoare | -36/+18 | |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -1/+1 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-09-28 | demode vec | Niko Matsakis | -3/+2 | |
| 2012-09-28 | Long lines. | Graydon Hoare | -1/+5 | |
| 2012-09-28 | Long lines | Brian Anderson | -46/+54 | |
| 2012-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -15/+14 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -11/+10 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -40/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -7/+7 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+40 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -7/+7 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -11/+11 | |
| 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 | -11/+11 | |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -2/+2 | |
| 2012-09-10 | Make remaining moves explicit in libstd | Tim Chevalier | -1/+1 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+3 | |
| 2012-09-06 | Refactor trans to replace lvalue and friends with Datum. | Niko Matsakis | -10/+14 | |
| Also: - report illegal move/ref combos whether or not ref comes first - commented out fix for #3387, too restrictive and causes an ICE | ||||
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -4/+4 | |
| 2012-09-02 | std: warn(non_camel_case_types) everywhere. still some exceptions | Brian Anderson | -2/+0 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -9/+44 | |
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -115/+117 | |
| 2012-08-27 | Remove deprecated modes from libstd/getopts.rs | Kevin Cantu | -43/+50 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -48/+48 | |
| 2012-08-26 | minor core/std cleanup | Ben Blum | -2/+2 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -21/+21 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -1/+1 | |
| 2012-08-15 | Expunge match checks | Tim Chevalier | -1/+2 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -52/+54 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -113/+113 | |
| 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 | -30/+30 | |
| 2012-07-31 | std: getopts::match -> matches | Brian Anderson | -33/+33 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -1/+1 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -174/+177 | |
| #2907. | ||||
| 2012-07-12 | Get rid of all of the remaining /~s in the code base. | Michael Sullivan | -4/+4 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -121/+120 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-04 | Tidy | Brian Anderson | -2/+5 | |
| 2012-07-04 | When getopts encounters an option that takes an argument, it should treat ↵ | Josh Matthews | -1/+39 | |
| the remainder of the current option string as the argument if it is non-empty. Fix #2791. | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -5/+5 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -98/+98 | |
| 2012-06-27 | Replace more vector additions (issue #2719) | Eric Holk | -3/+3 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -109/+110 | |
| 2012-05-31 | Add some convenience helpers to getopts. Close #1837. | Graydon Hoare | -0/+51 | |
| 2012-05-25 | Get rid of many implicit copies as a preliminary to Issue #2448. | Michael Sullivan | -2/+2 | |
| 2012-05-01 | std: Fix example in getopts module docs | Benjamin Kircher | -7/+25 | |
| Issue #1833. | ||||
| 2012-05-01 | std: Fix typo in getopts doc attribute | Benjamin Kircher | -2/+2 | |
