toml_edit 0.3.1

Yet another format-preserving TOML parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod decoder;
mod encoder;

fn main() {
    let encoder = encoder::Encoder;
    let decoder = decoder::Decoder;
    let mut harness = toml_test_harness::EncoderHarness::new(encoder, decoder);
    harness
        .ignore([
            // Can't verify until decoder is fixed
            "valid/string/multiline-quotes.toml",
        ])
        .unwrap();
    harness.test();
}