Skip to main content

arcly_http/data/drivers/
mod.rs

1//! Driver adapters — each behind its Cargo feature.
2//!
3//! | Feature      | Module     | Ecosystem                                  |
4//! |--------------|------------|--------------------------------------------|
5//! | `db-sqlx`    | `sqlx`   | SQLx `AnyPool` (postgres / mysql / sqlite) |
6//! | `db-seaorm`  | `seaorm` | SeaORM `DatabaseConnection`                |
7//! | `db-diesel`  | `diesel` | Sync Diesel isolated via `spawn_blocking`  |
8
9#[cfg(feature = "db-diesel")]
10pub mod diesel;
11#[cfg(feature = "db-seaorm")]
12pub mod seaorm;
13#[cfg(feature = "db-sqlx")]
14pub mod sqlx;