rdf_reader/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! ```rust
4//! # use rdf_reader::*;
5//! ```
6
7#![no_std]
8#![deny(unsafe_code)]
9
10#[cfg(feature = "std")]
11mod open_path;
12#[cfg(feature = "std")]
13pub use open_path::*;
14
15#[cfg(feature = "std")]
16mod open_url;
17#[cfg(feature = "std")]
18pub use open_url::*;
19
20mod reader;
21pub use reader::*;
22
23mod reader_options;
24pub use reader_options::*;
25
26mod providers {
27    #[cfg(feature = "oxrdf")]
28    mod oxrdf;
29    #[cfg(feature = "oxrdf")]
30    pub use oxrdf::*;
31    #[cfg(feature = "sophia")]
32    mod sophia;
33    #[cfg(feature = "sophia")]
34    pub use sophia::*;
35}