#![warn(missing_docs)]
#![deny(unreachable_pub)]
pub mod api;
#[cfg(test)]
extern crate self as safe_migrate;
#[cfg(test)]
#[path = "../tests/common/mod.rs"]
mod common;
pub(crate) mod _internal {
pub(crate) mod analysis;
pub(crate) mod ast;
pub(crate) mod db;
pub(crate) mod engine;
pub(crate) mod model;
pub(crate) mod report;
pub(crate) mod rules;
pub(crate) mod sync;
#[cfg(test)]
pub(crate) mod sync_tests;
#[cfg(test)]
pub(crate) mod test_support;
}
#[cfg(test)]
#[path = "internal_tests.rs"]
mod internal_tests;