safe-migrate 0.3.2

Lint PostgreSQL migrations against live database statistics to prevent blocking locks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;

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