db-pool 0.6.0

A thread-safe database pool for running database-tied integration tests in parallel
Documentation
1
2
3
4
5
use uuid::Uuid;

pub fn get_db_name(id: Uuid) -> String {
    format!("db_pool_{}", id.to_string().replace('-', "_"))
}