tank-postgres 0.32.0

Postgres driver implementation for Tank: the Rust data layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! PostgreSQL driver for `tank`.
mod connection;
mod driver;
mod interval_wrap;
mod prepared;
mod sql_writer;
mod transaction;
mod util;
mod value_wrap;

pub use connection::*;
pub use driver::*;
pub use prepared::*;
pub use sql_writer::*;
pub use transaction::*;
pub(crate) use value_wrap::*;