simple_pg
A work in progress series of crates to simply working postgreSQL in rust. Based on:
- https://docs.rs/tokio-postgres/latest/tokio_postgres/
- https://docs.rs/deadpool-postgres/0.12.1/deadpool_postgres
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.
Features
SQL macro
sql!).execute?;