Skip to main content

rustlavel_db/postgres/
mod.rs

1//! The PostgreSQL driver, implemented directly on the version 3 wire protocol.
2
3pub mod auth;
4pub mod connection;
5pub mod protocol;
6pub mod types;
7
8pub use connection::{Connection, PostgresDriver};