shacl 0.3.13

A SHACL validator for RDF data, implemented in Rust.
Documentation
mod cardinality;
mod components;
mod logical;
mod non_shape;
mod other;
mod property_pair;
mod shape_based;
mod shape_type;
mod sparql;
mod state;
mod string_based;
mod targets;
mod utils;
mod value_range;
mod value_type;

pub(crate) use cardinality::{max_count, min_count};
pub(crate) use logical::{and, not, or, xone};
pub(crate) use non_shape::{deactivated, severity};
pub(crate) use other::{closed, has_value, in_component};
pub(crate) use property_pair::{disjoint, equals, less_than, less_than_or_equals};
pub(crate) use shape_based::{node, property, qualified_value_shape, reifier_shape};
pub(crate) use shape_type::{node_shape, path, property_shape};
pub(crate) use sparql::basic_sparql;
pub(crate) use state::State;
pub(crate) use string_based::{language_in, max_length, min_length, pattern, unique_lang};
pub(crate) use targets::targets;
pub(crate) use value_range::{max_exclusive, max_inclusive, min_exclusive, min_inclusive};
pub(crate) use value_type::{class, datatype, node_kind};