postgres_to_polars 0.7.2

A Rust library for direct and performant conversion of PostgreSQL data to Polars dataframes.
mod models;

mod utils;

#[cfg(feature = "execution")]
pub use models::client::Client;
pub use models::client_options::ClientOptions;
pub use models::params::count_placeholders;
pub use models::params::{BinaryParam, IntoBinaryParam};
#[cfg(feature = "execution")]
pub use models::pool::PgToPlPool;
#[cfg(feature = "execution")]
pub use models::pool::build_pool;
pub use models::pool_options::PoolOptions;

pub use utils::error::{PgToPlError, PgToPlResult};

pub use utils::logger::init_logger;

pub use utils::statement_name;