shapes_converter 0.1.17

RDF data shapes implementation in Rust
Documentation
//! ShEx to SPARQL
//!
//!
mod name;
mod node_id;
pub mod shex2uml;
pub mod shex2uml_config;
pub mod shex2uml_error;
mod uml;
mod uml_cardinality;
mod uml_class;
mod uml_component;
mod uml_entry;
mod uml_error;
mod uml_link;
mod value_constraint;

pub use name::*;
pub use node_id::*;
pub use shex2uml_config::*;
pub use shex2uml_error::*;
pub use uml::*;
pub use uml_cardinality::*;
pub use uml_class::*;
pub use uml_component::*;
pub use uml_entry::*;
pub use uml_error::*;
pub use uml_link::*;
pub use value_constraint::*;