Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2015-06-04 | Disallow table redefinitions | Andrzej Janik | -19/+32 | |
2015-04-01 | Bump to 0.1.20 | Alex Crichton | -2/+1 | |
2015-03-15 | Improve test coverage | Alex Crichton | -0/+72 | |
2015-03-09 | Reduce usage of unstable features | Alex Crichton | -3/+5 | |
2015-02-23 | Move away from deprecated syntax | Alex Crichton | -2/+2 | |
2015-02-11 | Add support for numbers with underscores | Alex Crichton | -20/+87 | |
2015-02-07 | Implement parsing of inline tables | Alex Crichton | -2/+46 | |
2015-02-03 | Bump to 0.1.16 | Alex Crichton | -4/+4 | |
2015-01-27 | Migrate to as many stable functions as possible | Alex Crichton | -23/+27 | |
2015-01-23 | Bump to 0.1.15 | Alex Crichton | -6/+12 | |
2015-01-20 | Remove slash as an escapeable character | Alex Crichton | -1/+0 | |
2015-01-19 | Don't infinite loop on bad keys | Alex Crichton | -1/+6 | |
2015-01-15 | Update key syntax to TOML master | Alex Crichton | -90/+110 | |
* Bare keys contain a very limited set of characters now. * Keys in quotes behave the same as basic strings. Closes #47 | ||||
2015-01-15 | Add some tests from the spec | Alex Crichton | -0/+4 | |
2015-01-15 | Implement new rules for bare key names | Alex Crichton | -40/+86 | |
* Key names are restricted to [a-zA-Z0-9_-] * Equal signs must be on the same line (as must the next value) as the key * Quoted keys are allowed and are parsed as basic strings. Closes #48 | ||||
2015-01-15 | Expand float parsing to include exponents | Alex Crichton | -31/+88 | |
Closes #50 | ||||
2015-01-15 | Disallow leading 0s in integers/floats | Alex Crichton | -1/+26 | |
2015-01-15 | Audit string parsing, fixing a few bugs here and there | Alex Crichton | -17/+36 | |
Closes #51 | ||||
2015-01-15 | Tighten up CRLF parsing | Alex Crichton | -37/+69 | |
Fix lots of false positives with stray \r characters and also fix CRFL parsing in raw string literals with escapes. Closes #49 | ||||
2015-01-15 | Fix parsing leading `+` on numbers | Alex Crichton | -4/+5 | |
2015-01-09 | Bump to 0.1.11 | Alex Crichton | -18/+18 | |
2015-01-08 | Update to master | Valerii Hiora | -4/+4 | |
- features - macro reform - String/Show split in formatter - staging | ||||
2015-01-03 | Update to master | Valerii Hiora | -2/+2 | |
- updated `rustc-serialize` dependency, in other case `toml-rs` prohibits `rustc-serialize` update on other crates - updated after syntax and lib changes | ||||
2015-01-01 | Update to rust master | Alex Crichton | -1/+1 | |
2014-12-23 | Update to rust master | Alex Crichton | -3/+3 | |
2014-12-20 | Update to rust master | Alex Crichton | -5/+5 | |
2014-12-18 | Update to last rust. | Victor Berger | -7/+7 | |
2014-12-12 | Update to rust master | Alex Crichton | -9/+9 | |
2014-12-11 | Fix parsing nested tables in arrays | Alex Crichton | -12/+68 | |
Closes #36 | ||||
2014-12-06 | Update to rust master | Alex Crichton | -2/+2 | |
Closes #34 | ||||
2014-11-22 | Fixing build errors with latest rust | Markus Kobler | -18/+22 | |
2014-11-18 | Update to namespaced enum variants. | Victor Berger | -5/+7 | |
2014-11-06 | Update to rust master | Alex Crichton | -5/+5 | |
2014-11-04 | Implement the libstd error trait for errors | Alex Crichton | -0/+6 | |
2014-10-30 | Fix \r\n on multiline strings and add comments | Adolfo OchagavĂa | -1/+19 | |
2014-10-11 | Fix deprecation warnings: push_char => push | Louis Morgan | -9/+9 | |
2014-09-21 | Update to rust master | Alex Crichton | -14/+14 | |
Closes #19 | ||||
2014-09-17 | Updated to _mut conventions | Valerii Hiora | -2/+2 | |
2014-08-17 | Rename parser::Error to parser::ParseError | Brian Koropoff | -28/+28 | |
This avoids a conflict with serialization::Error and actually re-exports it from the crate root as intended. It also fixes a build break due to the new import shadowing gate in rustc. | ||||
2014-07-18 | Disambiguate "" empty strings from multiline strings properly. | Huon Wilson | -4/+9 | |
Previously `""` would go into multiline mode and thus *require* a following ". | ||||
2014-07-15 | Update an error message with \U support | Alex Crichton | -1/+1 | |
2014-07-15 | Implement multiline string literals | Alex Crichton | -5/+125 | |
While I'm at it, implement literal strings as well. Closes #5 | ||||
2014-07-15 | Support \U escapes in strings | Alex Crichton | -10/+20 | |
2014-07-15 | Migrate to a TreeMap for determinism | Alex Crichton | -8/+8 | |
2014-06-26 | Add a CRLF test | Alex Crichton | -0/+17 | |
2014-06-25 | Fix "error: cannot determine the type of this integer" | Daniel Trebbien | -3/+3 | |
2014-06-23 | Handle \r\n | Alex Crichton | -3/+7 | |
2014-06-23 | Add a method for converting to (line, column) | Alex Crichton | -0/+30 | |
2014-06-20 | Add documentation and examples | Alex Crichton | -0/+45 | |
2014-06-20 | Initial commit | Alex Crichton | -0/+617 | |