| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-01-07 | extratest: Fix all leaked trait imports | Alex Crichton | -2/+1 | |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -44/+44 | |
| Also remove all instances of 'self within the codebase. This fixes #10889. | ||||
| 2013-12-04 | Rename extra::json::*::init() constructors to *::new() | Kevin Ballard | -48/+48 | |
| 2013-11-29 | extra: missed a couple `@` in json | Erick Tryzelaar | -9/+9 | |
| 2013-11-29 | extra: json::Encoder should take a &mut io::Writer | Erick Tryzelaar | -50/+50 | |
| 2013-11-29 | extra: Rename json constructors into *::init | Erick Tryzelaar | -69/+77 | |
| 2013-11-29 | Remove some unnecessary impls from json | Erick Tryzelaar | -8/+0 | |
| 2013-11-29 | Remove @ from json::Error | Erick Tryzelaar | -41/+41 | |
| 2013-11-28 | Register new snapshots | Alex Crichton | -5/+5 | |
| 2013-11-26 | librustc: Fix merge fallout. | Patrick Walton | -2/+2 | |
| 2013-11-26 | test: Remove all remaining non-procedure uses of `do`. | Patrick Walton | -16/+16 | |
| 2013-11-26 | librustuv: Remove all non-`proc` uses of `do` from `libextra` and | Patrick Walton | -3/+1 | |
| `librustuv`. | ||||
| 2013-11-26 | Removed unneccessary `_iter` suffixes from various APIs | Marvin Löbel | -5/+5 | |
| 2013-11-24 | extra: improve the errors for the JSON Decoder. | Huon Wilson | -25/+126 | |
| Fixes #4244. | ||||
| 2013-11-19 | libextra: Convert uses of `&fn(A)->B` to `|A|->B`. | Patrick Walton | -61/+54 | |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -6/+6 | |
| 2013-10-28 | Remove the extension traits for Readers/Writers | Alex Crichton | -2/+1 | |
| These methods are all excellent candidates for default methods, so there's no need to require extra imports of various traits. | ||||
| 2013-10-24 | Remove even more of std::io | Alex Crichton | -96/+96 | |
| Big fish fried here: extra::json most of the compiler extra::io_util removed extra::fileinput removed Fish left to fry extra::ebml | ||||
| 2013-10-23 | Removed Unnecessary comments and white spaces #4386 | reedlepee | -5/+0 | |
| 2013-10-23 | Making fields in std and extra : private #4386 | reedlepee | -3/+8 | |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -33/+33 | |
| Who doesn't like a massive renaming? | ||||
| 2013-10-01 | remove the `float` type | Daniel Micay | -110/+101 | |
| It is simply defined as `f64` across every platform right now. A use case hasn't been presented for a `float` type defined as the highest precision floating point type implemented in hardware on the platform. Performance-wise, using the smallest precision correct for the use case greatly saves on cache space and allows for fitting more numbers into SSE/AVX registers. If there was a use case, this could be implemented as simply a type alias or a struct thanks to `#[cfg(...)]`. Closes #6592 The mailing list thread, for reference: https://mail.mozilla.org/pipermail/rust-dev/2013-July/004632.html | ||||
| 2013-09-30 | extra: Remove usage of fmt! | Alex Crichton | -34/+34 | |
| 2013-09-16 | extra::json: use a different encoding for enums. | Corey Richardson | -15/+24 | |
| It now uses `{"type": VariantName, "fields": [...]}`, which, according to @Seldaek, since all enums will have the same "shape" rather than being a weird ad-hoc array, will optimize better in javascript JITs. It also looks prettier, and makes more sense. | ||||
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -4/+3 | |
| The trait will keep the `Iterator` naming, but a more concise module name makes using the free functions less verbose. The module will define iterables in addition to iterators, as it deals with iteration in general. | ||||
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -1/+1 | |
| 2013-09-04 | stop treating char as an integer type | Daniel Micay | -4/+7 | |
| Closes #7609 | ||||
| 2013-08-29 | drop some redundant Ord method implementations | David Creswick | -4/+1 | |
| 2013-08-21 | Make json::to_xxx(&Json) fns Json::to_xxx(&self) | Brandon Sanderson | -64/+60 | |
| to_str, to_pretty_str, to_writer, and to_pretty_writer were at the top level of extra::json, this moves them into an impl for Json to match with what's been done for the rest of libextra and libstd. | ||||
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -3/+3 | |
| cc #7887 | ||||
| 2013-08-05 | Use TreeMap's ord implementation for Json | Alex Crichton | -18/+1 | |
| Closes #4430 | ||||
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -10/+10 | |
| this has been replaced by `for` | ||||
| 2013-08-01 | std: Change `Times` trait to use `do` instead of `for` | blake2-ppc | -1/+1 | |
| Change the former repetition:: for 5.times { } to:: do 5.times { } .times() cannot be broken with `break` or `return` anymore; for those cases, use a numerical range loop instead. | ||||
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -11/+10 | |
| 2013-07-27 | to_either + fixes | Erick Tryzelaar | -10/+9 | |
| 2013-07-23 | extra: switch json from hashmaps to treemaps | Graydon Hoare | -11/+11 | |
| 2013-07-18 | hashmap: Remove .consume() has rename .consume_iter() to .consume() | blake2-ppc | -2/+1 | |
| Updated all users of HashMap, HashSet old .consume() to use .consume() with a for loop. Since .consume() takes the map or set by value, it needs awkward extra code to in librusti's use of @mut HashMap, where the map value can not be directly moved out. | ||||
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -47/+11 | |
| 2013-07-14 | Noting that json.rs provides parsing as well | Austin King | -1/+1 | |
| 2013-07-11 | extra: add explicit ratchet-noise-percent option to benchmark ratchet, plus ↵ | Graydon Hoare | -2/+2 | |
| a few test breaking fixes. | ||||
| 2013-07-11 | extra: add metrics ratchet to test driver. | Graydon Hoare | -1/+1 | |
| 2013-07-11 | extra: add ToJson for TreeMap. | Graydon Hoare | -0/+11 | |
| 2013-07-10 | Convert json Reader to iterators | Gary Linscott | -40/+26 | |
| This is much faster for strings, and eventually when there is a buffered reader of some sort. Reading example.json 100 times before was around 1.18s. After: - reading from string 0.68s - reading from file 1.08s (extra time is all in io::Reader) | ||||
| 2013-07-08 | auto merge of #7612 : thestinger/rust/utf8, r=huonw | bors | -1/+1 | |
| 2013-07-08 | auto merge of #7608 : glinscott/rust/json_perf, r=pcwalton | bors | -7/+28 | |
| Avoids the overhead of read_char for every character. Benchmark reading example.json 10 times from https://code.google.com/p/rapidjson/wiki/Performance Before: 2.55s After: 0.16s Regression testing is already done by isrustfastyet. | ||||
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -1/+1 | |
| 2013-07-05 | str: stop encoding invalid out-of-range `char` | Daniel Micay | -1/+1 | |
| 2013-07-05 | Switch json parsing to read_chars for performance | Gary Linscott | -7/+28 | |
| Avoids the overhead of read_char for every character. Benchmark reading example.json 10 times from https://code.google.com/p/rapidjson/wiki/Performance Before: 2.55s After: 0.16s Regression testing is already done by isrustfastyet. | ||||
| 2013-07-04 | Implement consuming iterators for ~[], remove vec::{consume, ↵ | Huon Wilson | -3/+2 | |
| consume_reverse, map_consume}. | ||||
| 2013-06-29 | Warning cleanup | Corey Richardson | -1/+1 | |
