migratex 0.2.2

Agnostic migration toolkit library.
Documentation
// This file is part of "Migratex - A Migrations Toolkit".
//
// This source code is licensed under the MIT license, please view the LICENSE
// file distributed with this source code. For the full
// information and documentation: https://github.com/nicolab/migratex
// -----------------------------------------------------------------------------

//! ## Migratex
//!
//! **Migratex** is an agnostic migration toolkit library.
//! **Migrate anything! Anywhere! 🚀**
//!
//!💪 It can be used to migrate database / data / files / binaries, etc from one version to another.
//!
//! ## Links
//!
//!  - [https://github.com/nicolab/migratex](https://github.com/nicolab/migratex)
//!  - [Examples](https://github.com/nicolab/migratex/tree/main/examples)

mod helpers;
mod metadata;
mod migratex;
mod migration;
mod store;

pub use helpers::*;
pub use metadata::*;
pub use migratex::*;
pub use migration::*;

#[cfg(any(feature = "json", feature = "sqlx"))]
pub use store::*;