oxirs-fuseki 0.2.4

SPARQL 1.1/1.2 HTTP protocol server with Fuseki-compatible configuration
Documentation
//! Graph Store Protocol (GSP) Implementation
//!
//! W3C SPARQL 1.1 Graph Store HTTP Protocol
//! <https://www.w3.org/TR/sparql11-http-rdf-update/>
//!
//! Provides RESTful HTTP access to RDF graphs in a dataset.

pub mod content_neg;
pub mod read;
pub mod server_handlers;
pub mod target;
pub mod types;
pub mod write;

pub use content_neg::*;
pub use read::*;
pub use server_handlers::*;
pub use target::*;
pub use types::*;
pub use write::*;