rustlavel-db 0.8.1

Rustlavel database layer: PostgreSQL driver, query builder, migrations, and ORM
Documentation
1
2
3
4
5
6
7
8
//! The PostgreSQL driver, implemented directly on the version 3 wire protocol.

pub mod auth;
pub mod connection;
pub mod protocol;
pub mod types;

pub use connection::{Connection, PostgresDriver};