oxjelly 0.0.0

Parser and serializer for Jelly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]
#![doc(test(attr(deny(warnings))))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]

mod jelly {
    include!(concat!(env!("OUT_DIR"), "/jelly-rdf/mod.rs"));
}

mod from_rdf;
mod to_rdf;
mod error;
mod sorted;

pub use error::{JellyParseError, JellySyntaxError};
pub use to_rdf::{JellyParser, JellyPrefixesIter, ReaderJellyParser, SliceJellyParser};
pub use from_rdf::{JellySerializer, WriterJellySerializer};