toml_edit 0.3.1

Yet another format-preserving TOML parser.
Documentation
1
2
3
4
5
6
7
8
9
10
mod decoder;

fn main() {
    let decoder = decoder::Decoder;
    let mut harness = toml_test_harness::DecoderHarness::new(decoder);
    harness
        .ignore(["valid/string/multiline-quotes.toml"])
        .unwrap();
    harness.test();
}