# 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**
```rust
sql!(INSERT INTO schema.table VALUES(
{ entity.id },
"some_text",
ST_SetSRID({ geometry }), 4326)
)).execute(&mut tx)?;
```