1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![cfg_attr(feature = "bench", feature(test))]

#[macro_use]
mod macros;

#[cfg(feature = "serialize")]
mod serde;

pub mod dom;
pub mod formatter;
pub mod parser;
pub mod syntax;
pub mod util;
pub mod value;

#[cfg(test)]
mod tests;