dummy_xml

A fast DOM XML parser.

Example

How to parse: ```rust extern crate dummy_xml;

use dummy_xml::parser;

let result = parser::parse_str(""); match result { Ok(document) => { let root = document.root(); println!("root is {:?}", root); } Err(error) => panic!("{:?}", error), } ```

How to write: ```rust use dummyxml::writer; use dummyxml::node::Node;

let mut root = Node::new("parent".tostring()); root.appendchild("child1".tostring()) .appendattribute("gender".tostring(), "male".tostring()); root.appendchild("child2".tostring()) .appendattribute("gender".tostring(), "female".tostring()); root.appendchild("child3".tostring()) .appendattribute("gender".tostring(), "non-gender".tostring());

let mut result = String::new(); writer::write(&root, &mut result); println!("{}", result);

//expect to see: // // child1 gender='male'> // // // ```