db-pool 0.6.0

A thread-safe database pool for running database-tied integration tests in parallel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "diesel-async-postgres")]
mod diesel;
#[cfg(feature = "sea-orm-postgres")]
mod sea_orm;
#[cfg(feature = "sqlx-postgres")]
pub mod sqlx;
#[cfg(feature = "tokio-postgres")]
mod tokio_postgres;
mod r#trait;

#[cfg(feature = "diesel-async-postgres")]
pub use diesel::DieselAsyncPostgresBackend;
#[cfg(feature = "sea-orm-postgres")]
pub use sea_orm::SeaORMPostgresBackend;
#[cfg(feature = "sqlx-postgres")]
pub use sqlx::SqlxPostgresBackend;
#[cfg(feature = "tokio-postgres")]
pub use tokio_postgres::TokioPostgresBackend;