simple_pg_client 0.5.6

A native, asynchronous PostgreSQL client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# simple_pg_client

A work in progress, fork of [tokio-postgres](https://docs.rs/tokio-postgres/latest/tokio_postgres/), to
deeply intergrate with a pool and SQL Query builder. 

Primary Goals:
- Deeply integrate query builder.
- Unify client types so generic client isn't needed. Replaced by `impl Deref<Conn>`.
- Provided methods for fast & parallel unit testing via schema universes.
- Optimize performance for our use cases.
- Reduce incremental compile times via reducing monomorphization.