safe-migrate 0.4.2

Lint PostgreSQL migrations against live database statistics to prevent blocking locks
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;

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;