#![allow(clippy::result_large_err)]
pub mod config;
pub mod connection;
pub mod deserialize;
pub mod engine;
pub mod error;
pub mod pool;
pub mod row;
pub mod row_ref;
pub mod statement;
pub mod types;
pub use config::{PgConfig, PgConfigBuilder};
pub use connection::PgConnection;
pub use engine::PgEngine;
pub use error::{PgError, PgResult};
pub use pool::{PgPool, PgPoolBuilder, PoolConfig, PoolStatus};
pub use row::PgRow;
pub use statement::PreparedStatementCache;
pub mod prelude {
pub use crate::config::{PgConfig, PgConfigBuilder};
pub use crate::connection::PgConnection;
pub use crate::engine::PgEngine;
pub use crate::error::{PgError, PgResult};
pub use crate::pool::{PgPool, PgPoolBuilder};
pub use crate::row::PgRow;
}