Skip to main content

molten_document/
lib.rs

1//! # Molten Document
2//!
3//! `molten-document` provides document schema definitions, field types, validation, and
4//! document management functionality for the Molten Document and Workflow Management system.
5//!
6//! This crate is under active development and is not yet stable.
7//! If this crate has been abandoned, please message me and we can discuss ownership transfer.
8
9#![warn(missing_docs)]
10
11pub mod error;
12pub mod validator;
13
14pub use error::DocumentValidationError;
15pub use validator::validate_document;