tern_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The core of the [`tern`][tern-docs] migration library.
//!
//! This crate has types and traits for building migrations and running them
//! with a third-party database crate of choice.
//!
//! [tern-docs]: https://docs.rs/crate/tern/latest
//! [Executor]: self::executor::Executor
//! [executor]: self::executor
pub mod error;
pub mod executor;
pub mod migration;
pub mod runner;

pub mod future {
    pub use futures_core::future::{BoxFuture, Future};
}