| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-03 | library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵ | Daniel Patterson | -1941/+0 | |
| per #3543 | ||||
| 2012-10-22 | Merge remote-tracking branch 'original/incoming' into incoming | Simon BD | -22/+21 | |
| 2012-10-17 | Fix long lines | Tim Chevalier | -10/+10 | |
| 2012-10-14 | Use gpgv for signature verification in cargo | Luca Bruno | -19/+18 | |
| Parsing gpg output for signature verification is not recommended, as it can break easily (and doesn't work with i18n). This patch makes use of gpgv, as suggested by gpg authors: http://lists.gnupg.org/pipermail/gnupg-users/2004-August/023141.html This closes #3762. Signed-off-by: Luca Bruno <lucab@debian.org> | ||||
| 2012-10-12 | Make moves explicit in cargo | Tim Chevalier | -3/+3 | |
| 2012-10-06 | Merge remote-tracking branch 'original/incoming' into incoming | Simon BD | -1/+2 | |
| 2012-10-04 | Remove arg vectors from main functions. Stop supporting them. | Brian Anderson | -1/+2 | |
| 2012-10-03 | Merge remote-tracking branch 'original/incoming' into incoming | Simon BD | -146/+138 | |
| Conflicts: src/libstd/json.rs src/libstd/sort.rs | ||||
| 2012-10-02 | libstd: Switch off legacy modes in both core and std. | Patrick Walton | -2/+2 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-27 | Put function argument last in sort function. Fixes #3265. | Simon BD | -1/+1 | |
| 2012-09-26 | Fix fuzzer/cargo breakage | Brian Anderson | -2/+2 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -2/+2 | |
| 2012-09-26 | libstd: port json over to serialization2 | Erick Tryzelaar | -60/+59 | |
| 2012-09-26 | cargo: capcase types | Erick Tryzelaar | -81/+74 | |
| 2012-09-25 | Demode core::result | Brian Anderson | -5/+5 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -33/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -4/+4 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -3/+3 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+2 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -3/+3 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -3/+3 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+33 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -21/+21 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -5/+5 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -6/+7 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | cargo: Fix copies | Brian Anderson | -32/+34 | |
| 2012-09-18 | make filetype() include the "." (fixes #3412) | Niko Matsakis | -1/+1 | |
| 2012-09-13 | Convert package list to dvec (cc #2280) | Niko Matsakis | -32/+27 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -5/+5 | |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -1/+1 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-05 | cargo: "import" -> "use" | Patrick Walton | -12/+12 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -1/+1 | |
| 2012-09-01 | Demode sort.rs | Kevin Cantu | -1/+2 | |
| 2012-08-30 | cargo: Fix some lack of knowledge of basic algebraic identities | Patrick Walton | -18/+3 | |
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -0/+18 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+25 | |
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -28/+28 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -16/+16 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -95/+95 | |
| 2012-08-25 | Fix some unused variable warnings | Brian Anderson | -26/+20 | |
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -235/+242 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -74/+74 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -15/+17 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -1/+1 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -67/+67 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -174/+166 | |
| 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 | -75/+75 | |
