dbrest_postgres/lib.rs
1//! dbrest-postgres — PostgreSQL backend for the dbrest REST API
2//!
3//! This crate implements the [`DatabaseBackend`](dbrest_core::backend::DatabaseBackend)
4//! and [`SqlDialect`](dbrest_core::backend::SqlDialect) traits for PostgreSQL
5//! via `sqlx::PgPool`.
6
7pub mod dialect;
8pub mod executor;
9pub mod introspector;
10
11pub use dialect::PgDialect;
12pub use executor::PgBackend;
13pub use introspector::SqlxIntrospector;