| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -96/+98 | |
| 2012-08-27 | Turn off the verbose-mode of ebml. | Graydon Hoare | -1/+1 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -18/+18 | |
| 2012-08-25 | libstd: serialization should use &strs. | Erick Tryzelaar | -5/+5 | |
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -1/+1 | |
| Closes #3245 | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -34/+34 | |
| 2012-08-22 | libstd: fix serialization no-implicit-copies warnings | Erick Tryzelaar | -14/+14 | |
| 2012-08-22 | libstd: switch ebml's wr_tagged_str to use str::byte_slice | Erick Tryzelaar | -7/+1 | |
| 2012-08-15 | Expunge match checks | Tim Chevalier | -3/+6 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -6/+6 | |
| 2012-08-13 | Stop parsing old operator overloading syntax | Brian Anderson | -10/+0 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -7/+7 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -4/+4 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -23/+14 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -25/+29 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -34/+34 | |
| 2012-07-27 | rustc: Use coherence for operator overloading. | Patrick Walton | -0/+20 | |
| The only use of the old-style impls is now placement new. | ||||
| 2012-07-26 | Removed the rest of the vec::view calls that were marked with #2880. Fixes ↵ | Eric Holk | -1/+1 | |
| #2880. | ||||
| 2012-07-26 | Use iteration protocol for ebml, use vec::view in more places (issue #2880) | Eric Holk | -6/+9 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -8/+25 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -23/+23 | |
| #2907. | ||||
| 2012-07-12 | Fix the signature on vec::view. | Eric Holk | -2/+3 | |
| Due to limitations in region inference, this has the effect of making vec::view pretty much entirely unusable. | ||||
| 2012-07-05 | Mostly change TODOs to FIXMEs and annotate them | Tim Chevalier | -8/+9 | |
| But, one change in io to implement a TODO suggestion (using a const u8) | ||||
| 2012-07-04 | Remove empty argument lists from do expressions | Ben Striegel | -7/+7 | |
| 2012-07-03 | rustc: Speed up def ID parsing in the metadata | Patrick Walton | -0/+5 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -16/+16 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -16/+16 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -18/+18 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -6/+6 | |
| 2012-06-25 | Some perf fixes, although vec::slice is still too slow (Issue #2719) | Eric Holk | -1/+1 | |
| 2012-05-23 | changes to get std passing borrowck | Niko Matsakis | -2/+2 | |
| 2012-04-25 | More slice use in vec, io, str, ebml, metadata encoder and decoder. | Graydon Hoare | -20/+35 | |
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -5/+5 | |
| 2012-03-14 | std: Rename the hashmap constructors to conform to new standards | Brian Anderson | -4/+2 | |
| Instead of using the new_ prefix just name them after their type | ||||
| 2012-03-14 | annotate libstd and start enforcing mutability | Niko Matsakis | -12/+11 | |
| 2012-03-14 | adjust auto_serialize to generate fns named serialize_T() | Niko Matsakis | -2/+2 | |
| We used to generate a module T with a serialize() and deserialize() fn, but this was suboptimal for a number of reasons: - it required moving serialization into core so that uint etc worked - it was harder to override the serialization behavior locally (this is now trivial) | ||||
| 2012-03-13 | first (functional) version of the auto_serialize syntax ext | Niko Matsakis | -0/+314 | |
| 2012-03-13 | Overhaul constructor naming in libs | Brian Anderson | -2/+1 | |
| 2012-02-24 | Encode/decode AST into metadata, re-instantiate inlined items | Niko Matsakis | -81/+128 | |
| 2012-02-13 | add serialization library; convert ebml lib to use u64 internally | Niko Matsakis | -36/+62 | |
| 2012-02-10 | create serialization lib and update serializer to use it | Niko Matsakis | -13/+16 | |
| 2012-02-10 | put serializer into the build and encode full item paths | Niko Matsakis | -6/+12 | |
| 2012-02-10 | update ebml interface | Niko Matsakis | -2/+22 | |
| 2012-02-09 | Increase precedence of as operator | Marijn Haverbeke | -18/+16 | |
| Closes #1717 | ||||
| 2012-01-31 | Change option::t to option | Tim Chevalier | -1/+1 | |
| Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming). | ||||
| 2012-01-23 | s/block()/fn()/g | Niko Matsakis | -2/+2 | |
| 2012-01-19 | stdlib: "tag" -> "enum" | Patrick Walton | -2/+2 | |
| 2012-01-18 | Remove '.' after nullary tags in patterns | Tim Chevalier | -1/+1 | |
| Does what it says on the tin. The next commit will remove support for this syntax. | ||||
| 2012-01-11 | Major clean-up of std::io | Marijn Haverbeke | -4/+4 | |
| Use ifaces instead of objs, stop wrapping everything in two (or three) layers of no-value-added indirection, and remove some of the more pointless/outdated idioms from the code. | ||||
| 2011-12-22 | Register snapshots and switch logging over to use of log_full or #error / ↵ | Graydon Hoare | -4/+4 | |
| #debug. | ||||
