parsql_deadpool_postgres/
lib.rs1pub mod traits;
3pub mod macros;
4
5pub mod transactional_ops;
7
8pub use macros::*;
10
11pub use transactional_ops as transactional;
13
14mod crud_ops;
16
17pub mod pool_extensions;
19pub mod transaction_extensions;
20
21pub use crud_ops::{
23 insert,
24 update,
25 delete,
26 get,
27 get_all,
28 select,
29 select_all
30};
31
32pub use deadpool_postgres::{Pool, Client as PoolClient, PoolError, Transaction};
34
35pub use tokio_postgres::{Error, Row};
37pub use tokio_postgres::types::ToSql;