safe-migrate 0.4.4

Analyze PostgreSQL migrations for schema and locking risks
Documentation
// FILE: ./src/lib.rs

// FILE: src/lib.rs

pub mod analysis;
pub mod ast;
pub mod db;
pub mod engine;
pub mod model;
pub mod report;
pub mod rules;
pub mod sync;
#[cfg(test)]
pub mod sync_tests;
#[cfg(test)]
pub(crate) mod test_support;

pub use analysis::state::AnalysisState;
pub use db::cache::DbCache;
pub use engine::config::Config;
pub use engine::engine::SafeMigrateEngine;
pub use report::interactive::run_interactive;
pub use report::reporter::Reporter;