toml_edit 0.17.0

Yet another format-preserving TOML parser.
Documentation
mod decoder;

fn main() {
    let decoder = decoder::Decoder;
    let mut harness = toml_test_harness::DecoderHarness::new(decoder);
    harness.ignore(["invalid/control/comment-cr.toml"]).unwrap();
    harness.test();
}