toml_edit 0.22.11

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

fn main() {
    let decoder = decoder::Decoder;
    let mut harness = toml_test_harness::DecoderHarness::new(decoder);
    harness.version("1.0.0");
    harness.ignore([]).unwrap();
    harness.test();
}