xrust 2.0.3

Support for XPath and XSLT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod conformance;

//use std::convert::TryFrom;
//use std::fs;
//use xrust::{Document, Error};

/*
#[test]
#[ignore]
fn bigfile() {
    /* A million elements, each with an attribute and value */

    let testxml =
        Document::try_from((fs::read_to_string("tests/xml/45M.xml").unwrap(), None, None));

    assert!(testxml.is_ok());
}
 */