Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2014-07-09 | ToStr::to_str -> ToString::to_string | Michael Gehring | -7/+7 | |
2014-07-02 | Add a test for _ => - translation | Alex Crichton | -6/+15 | |
2014-07-02 | Decodes `foo-bar` into a field named `foo_bar` | Yehuda Katz + Carl Lerche | -1/+9 | |
This logic is specific to the Decoder, and because Rust does not support hyphenated names as identifiers, it's the only reasonable thing to do with hyphenated names in Toml. | ||||
2014-06-28 | Remove stray println!() | Alex Crichton | -2/+0 | |
2014-06-28 | Be more resilient about unused values in array | Alex Crichton | -1/+42 | |
2014-06-28 | Always remove Array values from the Decoder | Alex Crichton | -5/+15 | |
2014-06-28 | Prune more unused fields | Alex Crichton | -2/+40 | |
2014-06-28 | Don't leave empty tables lying around | Alex Crichton | -1/+27 | |
2014-06-26 | Document a new public field | Alex Crichton | -0/+2 | |
2014-06-26 | Leave unused keys in TOML while decoding | Alex Crichton | -13/+71 | |
2014-06-23 | Fix a test | Alex Crichton | -1/+1 | |
2014-06-23 | Expose kinds of errors | Alex Crichton | -56/+103 | |
2014-06-23 | Add Encodable/Decodable support for enums | Alex Crichton | -13/+66 | |
2014-06-23 | Add a test for a missing field | Alex Crichton | -1/+19 | |
2014-06-23 | Improve decoder errors | Alex Crichton | -89/+174 | |
2014-06-22 | Clean up warnings and documentation | Alex Crichton | -19/+50 | |
2014-06-22 | Implement Encoder/Decoder for libserialize traits | Alex Crichton | -0/+726 | |