aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/valid
AgeCommit message (Collapse)AuthorLines
2021-03-21hilarious and original jokeHEADmainMelody Horn-8/+8
2020-05-28Allow delimiter quotes at the end of multiline strings (#393)pyfisch-0/+17
TOML allows (unlike many other formats) up to 2 additonal quotes that are part of the string: basic = """2 extra quotes -->""""" literal = '''here too '''' Changed in TOML v1.0.0-rc.1 See also #392
2020-01-30Fix roundtripping of \u001f and \u007f in toml string literals (#372)Michael Sloan-0/+10
2019-11-22Mixed type arrays (#358)daubaris-1/+34
* Added support of mixed-type arrays * Add tests cases * Replaced &'static str type for type_ and created a new enum instead * Restored ArrayMixedType
2019-08-23Allow zero-prefixed float exponents. (#322)Eric Huss-0/+20
2018-10-27Allow whitespace after line ending backslash (#162)Joey Hain-0/+19
2018-10-01Avoid panic on pretty string ending in single quoteMatti Niemenmaa-0/+12
Fixes #262.
2018-07-27Don't allow intermixing inline tables and dotted key tables.Eric Huss-13/+1
2018-07-160.5: Support dotted keys.Eric Huss-0/+53
cc #224
2018-07-110.5: Support hex/oct/bin integers.Eric Huss-1/+23
cc #224
2018-07-110.5: Support floats nan, inf, and +/-0.0.Eric Huss-1/+5
cc #224
2018-05-09Treat unicode hex digits case-insensitivelyClaudio Bley-1/+7
In Rust >= 1.24.0 we could have used `char::is_ascii_hexdigit`, but to keep compatiblity with older versions, `char::is_digit(16)` is used. Fixes #240.
2017-11-12Move tests into their own crateDavid Tolnay-0/+1107