nanopool 1.2.0

A tiny database connection pooling library for PostgreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]
#![cfg_attr(not(doctest), doc = include_str!("../README.md"))]

/// Connection pool errors
pub mod errors;
/// PostgreSQL connection pool
pub mod pool;
/// TLS connections
pub mod tls;

/// Re-export the `uuid` type
#[cfg(feature = "uuid")]
pub mod uuid;