#![doc = include_str!("../README.md")]
#![deny(rust_2018_idioms)]
pub mod ast;
pub mod ir;
pub mod rdf;
pub mod types;
#[cfg(not(target_family = "wasm"))]
pub mod validator;
pub mod error {
pub use crate::ast::error::*;
pub use crate::ir::error::*;
pub use crate::rdf::error::*;
#[cfg(not(target_family = "wasm"))]
pub use crate::validator::error::*;
}