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
mod common;
mod error;
#[cfg(feature = "_sync-mysql")]
mod mysql;
#[cfg(feature = "_sync-postgres")]
mod postgres;
pub(crate) mod r#trait;

pub(crate) use error::Error;
#[cfg(feature = "diesel-mysql")]
pub use mysql::DieselMySQLBackend;
#[cfg(feature = "mysql")]
pub use mysql::MySQLBackend;
#[cfg(feature = "diesel-postgres")]
pub use postgres::DieselPostgresBackend;
#[cfg(feature = "postgres")]
pub use postgres::PostgresBackend;
pub use r#trait::Backend as BackendTrait;