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.
19 lines
420 B
19 lines
420 B
4 years ago
|
//! Implementation of [W3C RDF tests](http://w3c.github.io/rdf-tests/) to tests Oxigraph conformance.
|
||
|
#![deny(
|
||
|
future_incompatible,
|
||
|
nonstandard_style,
|
||
|
rust_2018_idioms,
|
||
|
missing_copy_implementations,
|
||
|
trivial_casts,
|
||
|
trivial_numeric_casts,
|
||
|
unsafe_code,
|
||
|
unused_qualifications
|
||
|
)]
|
||
|
|
||
|
pub mod files;
|
||
|
pub mod manifest;
|
||
|
pub mod parser_evaluator;
|
||
|
pub mod report;
|
||
|
pub mod sparql_evaluator;
|
||
|
mod vocab;
|