#![recursion_limit="256"]
//Fix Recursion limitation
//!Parsing XML, and retrieving specific text or attribute.
//!
//!* **Baseline**: Simple XML with just one tag, no attributes.
//!* **Attributes**: 1 tag with 1000 attributes.
//!* **Serial**: 1000 tags, opening and closing, opening and closing. No nesting.
//!* **Nested**: 1000 nested entries, each inside of the other.
#[macro_use]
extern crate bencher;
static BASELINE: &str = r"test";
static ATTRIBUTE: &str = r#""#;
static SERIAL: &str = r#"test"#;
static NESTED: &str = r#"