diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index ef69011..ea86e07 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,10 @@ +use peanuts::xml::composers::Composer; use peanuts::xml::parsers::Parser; use peanuts::xml::Document; -fn main() { - let document = Document::parse( +#[tokio::main] +async fn main() { + let (rest, document) = Document::parse( "<?xml version=\"1.0\"?> <TEST> <block1>Background Mark 1</block1> @@ -10,6 +12,9 @@ fn main() { <block3>Background Mark 3</block3> </TEST>ahsdkjlfhasdlkjfhkljh ", - ); - println!("{:#?}", document); + ) + .unwrap(); + println!("{:#?}{}", document, rest); + let mut stdout = tokio::io::stdout(); + document.write(&mut stdout).await.unwrap(); } |