postgres_to_polars 0.7.2

A Rust library for direct and performant conversion of PostgreSQL data to Polars dataframes.
1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "execution")]
pub mod client;
pub mod client_options;
#[cfg(feature = "execution")]
pub mod column_result;
pub mod params;
#[cfg(feature = "execution")]
pub mod pool;
pub mod pool_options;
pub mod postgres_error;