Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
865 B
25 lines
865 B
#![doc = include_str!("../README.md")]
|
|
#![doc(test(attr(deny(warnings))))]
|
|
#![cfg_attr(docsrs, feature(doc_auto_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 lexer;
|
|
mod line_formats;
|
|
pub mod n3;
|
|
pub mod nquads;
|
|
pub mod ntriples;
|
|
mod terse;
|
|
mod toolkit;
|
|
pub mod trig;
|
|
pub mod turtle;
|
|
|
|
pub use crate::n3::N3Parser;
|
|
pub use crate::nquads::{NQuadsParser, NQuadsSerializer};
|
|
pub use crate::ntriples::{NTriplesParser, NTriplesSerializer};
|
|
pub use crate::toolkit::{ParseError, SyntaxError, TextPosition};
|
|
pub use crate::trig::{TriGParser, TriGSerializer};
|
|
pub use crate::turtle::{TurtleParser, TurtleSerializer};
|
|
|
|
pub(crate) const MIN_BUFFER_SIZE: usize = 4096;
|
|
pub(crate) const MAX_BUFFER_SIZE: usize = 4096 * 4096;
|
|
|