gaman-core 0.3.22

Offline core engine for Gaman migrations
Documentation
#![allow(clippy::result_large_err)]

mod canonicalize;
mod input;
mod load;
pub mod names;
mod normalize;
mod replay;
mod validate;

pub mod builder;
pub mod errors;
pub mod types;

pub use builder::*;
pub use errors::*;
pub use input::*;
pub use types::*;

#[cfg(test)]
mod load_tests;
#[cfg(test)]
mod tests;