shacl_ast 0.0.7

RDF data shapes implementation in Rust
Documentation
//! SHACL Abstract Syntax
//!
//! Ths abstract syntax follows the [SHACL spec](https://www.w3.org/TR/shacl/)
//!

#![deny(rust_2018_idioms)]

// The recursion limit is increased because the default one (128) is not enough for the big lazy_static declaration in the SHACL vocabulary definition
#![recursion_limit = "256"]
pub mod ast;
pub mod shacl_vocab;
pub mod rdf_to_shacl;

pub use ast::*;
pub use rdf_to_shacl::*;
pub use shacl_vocab::*;

#[cfg(test)]
mod tests {

}