aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/linear.rs
AgeCommit message (Collapse)AuthorLines
2019-10-29Replace the test added by #349 with a bench (#351)est31-37/+0
CI environments can be noisy and while the test worked great locally on my machine, it didn't on the CI environment. This replaces the test with a (manually tracked) benchmark. As per https://github.com/alexcrichton/toml-rs/pull/349#issuecomment-546998173
2019-10-28Decrease deserialization complexity from quadratic to linear (#349)est31-0/+37
* Speed up array code * Speed up map code too Also add regression test * Use more obvious closure notation * Document the builder functions