1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
mod coord;
mod hsref;
mod number;
mod symbol;
mod tag;

pub use coord::Coord;
pub use hsref::{ParseRefError, Ref};
pub use number::{Number, ParseNumberError};
pub use symbol::{ParseSymbolError, Symbol};
pub use tag::{is_tag_name, ParseTagNameError, TagName};

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}