dsntk_common/
lib.rs

1//! # Common definitions
2
3#[macro_use]
4extern crate dsntk_macros;
5
6mod errors;
7mod href;
8mod idents;
9mod jsonify;
10mod namespace;
11mod uri;
12
13pub use errors::{DsntkError, Result, ToErrorMessage};
14pub use href::HRef;
15pub use idents::gen_id;
16pub use jsonify::Jsonify;
17pub use namespace::to_rdnn;
18pub use uri::{encode_segments, to_uri, Uri};