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
#[cfg(feature = "easy")]
mod easy_decoder;

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

#[cfg(not(feature = "easy"))]
fn main() {}