1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! Parser for UDL (Universal Data Language).


extern crate core;


#[cfg(feature = "parse")]
pub mod ast;
#[cfg(feature = "parse")]
pub mod lex;
#[cfg(feature = "parse")]
pub mod parse;

#[cfg(feature = "common")]
pub mod common;

#[cfg(feature = "html")]
pub mod html;

#[cfg(feature = "tex")]
pub mod tex;