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
#[cfg(feature = "diesel-postgres")]
pub mod diesel;
#[cfg(feature = "postgres")]
pub mod postgres;
mod r#trait;

#[cfg(feature = "diesel-postgres")]
pub use diesel::DieselPostgresBackend;
#[cfg(feature = "postgres")]
pub use postgres::PostgresBackend;