aboutsummaryrefslogtreecommitdiff
path: root/test-suite
AgeCommit message (Collapse)AuthorLines
2018-07-100.5: Reject 0x7f (DEL) in strings.Eric Huss-0/+2
cc #224
2018-07-100.5: Support space separate in datetime.Eric Huss-2/+6
cc #224
2018-05-24Support fixed-length arraysAlex Crichton-1/+14
Turns out these are deserialized/serialized as tuples! While we're at it add support for tuple variants and tuple structs through the same paths. Closes #244
2018-05-09Merge pull request #239 from udoprog/spansAlex Crichton-0/+66
Support spans when deserializing serde structures
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.
2018-05-09Make spanned module private and hide internalsJohn-John Tedro-3/+3
2018-05-07Fix incorrectly reported spans for DatetimeJohn-John Tedro-0/+23
2018-05-07Adjust spans for more complex typesJohn-John Tedro-0/+13
2018-05-07Use custom struct/field naming to deserialize spansJohn-John Tedro-0/+30
2017-11-12A toml macroDavid Tolnay-0/+295
2017-11-12Move tests into their own crateDavid Tolnay-0/+3290