molten-document 0.0.2

Document schema definitions, field types, and validation for Molten
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Molten Document
//!
//! `molten-document` provides document schema definitions, field types, validation, and
//! document management functionality for the Molten Document and Workflow Management system.
//!
//! This crate is under active development and is not yet stable.
//! If this crate has been abandoned, please message me and we can discuss ownership transfer.

#![warn(missing_docs)]

pub mod error;
pub mod validator;

pub use error::DocumentValidationError;
pub use validator::validate_document;