sqlx-core 0.4.0

Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
1
2
3
4
5
6
7
8
9
10
11
mod error;
mod migrate;
mod migration;
mod migrator;
mod source;

pub use error::MigrateError;
pub use migrate::{Migrate, MigrateDatabase};
pub use migration::Migration;
pub use migrator::Migrator;
pub use source::MigrationSource;