athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Database driver integrations.
//!
//! - `scylla` for Athena/ScyllaDB
//! - `postgresql` for direct Postgres
//! - `supabase` for Supabase Postgres poolers
//! - `cloudflare_d1` for proxied Cloudflare D1 access
//!
//! Scylla execution, shared host-health tracking, and the health-aware
//! Supabase client core are now extracted into `crates/athena-driver` and
//! re-exported here through compatibility modules. Cloudflare D1 follows the
//! same pattern: the implementation lives in `crates/athena-driver`, while
//! this module keeps the historical root-crate path stable.
pub mod cloudflare_d1;
pub mod postgresql;
pub mod scylla;
pub mod supabase;