Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2020-10-11 | Improve error message when parsing unquoted string (#385) | Alex Tokarev | -5/+14 | |
* Improve error message when parsing unquoted string * Remove conversion to lowercase in parse_keylike() Converting keys to lowercase goes against TOML specification for floats. * Change error message for unquoted string | ||||
2019-08-23 | Allow zero-prefixed float exponents. (#322) | Eric Huss | -1/+0 | |
2019-07-30 | Add line and column to all Errors | Andres Suarez | -14/+23 | |
2019-07-28 | Show "column" in Error messages | Andres Suarez | -77/+116 | |
2019-07-28 | Fully expand error messages in tests | Andres Suarez | -92/+160 | |
2019-05-08 | cargo fmt | Eric Huss | -78/+165 | |
2019-02-19 | Fix case sensitivity with T, Z, and E. | Eric Huss | -0/+1 | |
2018-09-25 | Fix multi-line strings are not allowed for key | rhysd | -0/+6 | |
In spec https://github.com/toml-lang/toml#keys Quoted keys are clarified as > he exact same rules as either basic strings or literal strings TOML clearly distinguishes basic string and multi-line basic string (literal string is also). https://github.com/toml-lang/toml#string So table key and quoted key should not allow multi-line basic string and multi-line literal string. ABNF definition also describes that. https://github.com/toml-lang/toml/blob/master/toml.abnf ``` string = ml-basic-string / basic-string / ml-literal-string / literal-string quoted-key = basic-string / literal-string ``` `string` contains `ml-*` but `quoted-key` doesn't. | ||||
2017-11-12 | Move tests into their own crate | David Tolnay | -0/+495 | |