1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//
// lib.rs
//
// amxml: XML processor with XPath.
// Copyright (C) 2018 KOYAMA Hiro <tac@amris.co.jp>
//
//!
//! XML processor with XPath.
//! For more informations, refer the <strong>dom</strong> module page first.
//!

#[macro_use]
pub mod xmlerror;
pub mod sax;
pub mod dom;
pub mod xpath;