//! Deadpool experimental feature - alternative Postgres connection pooling.
//!
//! # Structure
//! - `mod.rs` - Feature-facing re-exports for deadpool-backed registry
//!
//! # Usage
//! When enabled, uses `deadpool-postgres` instead of `sqlx` for connection pooling.
//! This is experimental and offers different performance characteristics and error
//! recovery patterns compared to the default sqlx-based pooling
//! (implementation in `src/drivers/postgresql/deadpool_registry.rs`).
//!
//! # Note
//! When this feature is disabled, builds use sqlx pooling exclusively.
pub use crate;