1#![deny(unused_crate_dependencies)]
2
3pub use {
4 c_utils::ptr_to_cstr,
5 class::Class,
6 consts::*,
7 data_type::DataType,
8 graph::{Graph, GraphDisplayIRI},
9 literal::{Literal, LiteralIdUrlDisplay, LiteralUrlDisplay, LiteralValue},
10 namespace::Namespace,
11 predicate::Predicate,
12 term::Term,
13};
14
15mod c_utils;
16mod class;
17pub mod consts;
18mod data_type;
19mod graph;
20mod literal;
21mod namespace;
22mod predicate;
23mod term;
24
25pub type StaticIRI = fluent_uri::Uri<&'static str>;
26pub type IRIref<'a> = &'a fluent_uri::Uri<&'a str>;