xsd-schema 0.1.0

XML Schema (XSD 1.0/1.1) validator with PSVI and a built-in XPath 2.0 engine
Documentation
1
2
3
4
5
6
7
8
9
//! Build script for xsd-schema crate.
//!
//! This script configures LALRPOP to generate the XPath parser
//! when the `xsd11` feature is enabled.

fn main() {
    #[cfg(feature = "xsd11")]
    lalrpop::process_root().expect("Failed to process LALRPOP grammar");
}