raystack_core/
lib.rs

1mod coord;
2#[cfg(feature = "json")]
3mod hayson;
4mod hsref;
5mod marker;
6mod na;
7mod number;
8mod qname;
9mod symbol;
10mod tag;
11mod uri;
12mod xstr;
13
14pub use coord::Coord;
15#[cfg(feature = "json")]
16pub use hayson::{FromHaysonError, Hayson};
17pub use hsref::{ParseRefError, Ref};
18pub use marker::{Marker, RemoveMarker};
19pub use na::Na;
20pub use number::{BasicNumber, Number, ScientificNumber};
21pub use qname::Qname;
22pub use symbol::{ParseSymbolError, Symbol};
23pub use tag::{is_tag_name, ParseTagNameError, TagName};
24pub use uri::Uri;
25pub use xstr::Xstr;
26
27#[cfg(test)]
28mod tests {
29    #[test]
30    fn it_works() {
31        assert_eq!(2 + 2, 4);
32    }
33}