rorm_declaration/
lib.rs

1//! This crate holds all declarative parts of rorm which do not depend
2//! on another crate.
3#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
4#![warn(missing_docs)]
5
6pub mod config;
7/// This module holds the internal model representation
8pub mod imr;
9pub mod lints;
10/// This module holds the definition of migration files
11pub mod migration;