1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
mod coord;
#[cfg(feature = "json")]
mod hayson;
mod hsref;
mod marker;
mod na;
mod number;
mod qname;
mod symbol;
mod tag;
mod uri;
mod xstr;

pub use coord::Coord;
#[cfg(feature = "json")]
pub use hayson::{FromHaysonError, Hayson};
pub use hsref::{ParseRefError, Ref};
pub use marker::{Marker, RemoveMarker};
pub use na::Na;
pub use number::Number;
pub use qname::Qname;
pub use symbol::{ParseSymbolError, Symbol};
pub use tag::{is_tag_name, ParseTagNameError, TagName};
pub use uri::Uri;
pub use xstr::Xstr;

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