migratex 0.2.2

Agnostic migration toolkit library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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
// -----------------------------------------------------------------------------

#[cfg(feature = "json")]
mod json_metadata;

#[cfg(feature = "sqlx")]
mod sqlite_metadata;

#[cfg(feature = "json")]
pub use json_metadata::*;

#[cfg(feature = "sqlx")]
pub use sqlite_metadata::*;