c3p0_common 0.72.6

A good friend for r2d2
Documentation
pub mod error;
pub mod json;
pub mod pool;
pub mod sql;
pub mod time;

#[cfg(feature = "migrate")]
mod migrate;

mod common {
    pub use crate::error::C3p0Error;
    pub use crate::json::{
        C3p0Json, codec::DefaultJsonCodec, codec::JsonCodec, model::Model, model::NewModel,
        types::*,
    };
    pub use crate::sql::OrderBy;

    pub use crate::pool::C3p0Pool;

    #[cfg(feature = "migrate")]
    pub use crate::migrate::{
        C3P0_INIT_MIGRATION_ID, C3P0_MIGRATE_TABLE_DEFAULT, C3p0Migrate, C3p0MigrateBuilder,
        C3p0Migrator, Migration, MigrationData, MigrationModel, MigrationType, Migrations,
        build_migration_zero, check_if_migration_already_applied, clean_history, from_embed,
        from_fs, include_dir, sql_migration::SqlMigration, sql_migration::to_sql_migrations,
    };
}

pub use crate::common::*;