1 2 3 4 5 6 7
use std::{error::Error, fs::File}; use nom_xml::{document::Document, parse_file}; fn main() -> Result<(), Box<dyn Error>> { Ok(()) }