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.
15 lines
419 B
15 lines
419 B
#![doc = include_str!("../README.md")]
|
|
#![deny(unsafe_code)]
|
|
#![doc(test(attr(deny(warnings))))]
|
|
#![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")]
|
|
|
|
pub mod algebra;
|
|
mod parser;
|
|
mod query;
|
|
pub mod term;
|
|
mod update;
|
|
|
|
pub use parser::ParseError;
|
|
pub use query::*;
|
|
pub use update::*;
|
|
|