zkp-ld / rdf-canon

A Rust implementation of the RDF Dataset Canonicalization algorithm version 1.0 (RDFC-1.0) compatible with Oxigraph and Oxrdf. The purpose of this implementation is only to understand and evaluate the specification and is not intended for production use.
MIT License
8 stars 1 forks source link

Use Oxigraph and OxRDF for N-Quads parser and internal RDF data structures #3

Closed yamdan closed 1 year ago

yamdan commented 1 year ago

We have moved away from using our ad-hoc N-Quads parser and RDF data structures and have instead adopted the use of Oxigraph (and its internal OxRDF). This change makes it easier to canonicalize Oxigraph's internal data and output. However, the current version of Oxigraph does not provide the latest Canonical N-Triples and Canonical N-Quads representations. Therefore, we are currently relying on our forked Oxigraph and Oxrdf that supports canonical representations.

Fixes #1.