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
#[cfg(any(all(test, feature = "tokio-postgres"), feature = "tokio-postgres-bb8"))]
pub mod bb8;
#[cfg(feature = "tokio-postgres-deadpool")]
pub mod deadpool;
#[cfg(feature = "tokio-postgres-mobc")]
pub mod mobc;
pub(in crate::r#async::backend) mod r#trait;