c3p0_migrate 0.10.1

A good friend for r2d2. Based on rust-postgres.
Documentation
#![cfg(feature = "sqlite")]

use c3p0_pool_sqlite::r2d2::{Pool, SqliteConnectionManager};
use c3p0_pool_sqlite::C3p0PoolSqlite;
use testcontainers::*;

mod tests;

pub fn new_connection(_docker: &clients::Cli) -> (C3p0PoolSqlite, String) {
    let manager = SqliteConnectionManager::memory();

    let pool = Pool::builder().build(manager).unwrap();

    let pool = C3p0PoolSqlite::new(pool);

    (pool, "".to_owned())
}