switchy_database 0.3.0

Switchy database package
1
2
3
4
5
6
7
8
9
10
11
12
//! PostgreSQL database backend implementation
//!
//! This module provides native PostgreSQL database support using the `postgres` crate.
//! It includes connection management, query execution, and schema introspection for PostgreSQL.

#[allow(clippy::module_inception)]
#[cfg(feature = "postgres-raw")]
/// `PostgreSQL` database backend implementation using native `tokio-postgres`
pub mod postgres;

#[cfg(all(feature = "postgres-raw", feature = "schema"))]
pub(crate) mod introspection;