blob: 5d4fc2a4d57ae79a51ce5ce425ed82c9f0320044 [file] [log] [blame] [edit]
mod decoder;
#[cfg(all(feature = "parse", feature = "display"))]
fn main() {
let decoder = decoder::Decoder;
let mut harness = toml_test_harness::DecoderHarness::new(decoder);
harness
.ignore([
"valid/spec/float-0.toml",
// Unreleased
"valid/string/escape-esc.toml",
"valid/string/hex-escape.toml",
"valid/datetime/no-seconds.toml",
"valid/inline-table/newline.toml",
])
.unwrap();
harness.test();
}
#[cfg(not(all(feature = "parse", feature = "display")))]
fn main() {}