pavex_session_sqlx/
lib.rs1#![deny(missing_docs)]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#[cfg(feature = "postgres")]
13#[cfg_attr(docsrs, doc(cfg(feature = "postgres")))]
14pub mod postgres;
15
16#[cfg(feature = "postgres")]
17#[cfg_attr(docsrs, doc(cfg(feature = "postgres")))]
18#[doc(inline)]
19pub use postgres::PostgresSessionStore;
20
21#[cfg(feature = "mysql")]
22#[cfg_attr(docsrs, doc(cfg(feature = "mysql")))]
23pub mod mysql;
24
25#[cfg(feature = "mysql")]
26#[cfg_attr(docsrs, doc(cfg(feature = "mysql")))]
27#[doc(inline)]
28pub use mysql::MySqlSessionStore;
29
30#[cfg(feature = "sqlite")]
31#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
32pub mod sqlite;
33
34#[cfg(feature = "sqlite")]
35#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
36#[doc(inline)]
37pub use sqlite::SqliteSessionStore;