This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
ood_persistence/src/lib.rs

27 lines
445 B
Rust
Raw Normal View History

2021-10-17 15:08:46 +03:00
#![deny(clippy::all)]
#![cfg_attr(feature = "nightly", feature(generic_associated_types))]
2021-10-12 18:14:02 +03:00
#[cfg(feature = "async")]
#[macro_use]
extern crate async_trait;
#[cfg(feature = "async")]
pub mod asyn;
#[cfg(feature = "sync")]
pub mod syn;
#[cfg(feature = "bb8")]
pub use bb8;
#[cfg(feature = "bb8_postgres")]
pub mod bb8_postgres;
#[cfg(feature = "r2d2")]
pub use r2d2;
#[cfg(feature = "r2d2_postgres")]
pub mod r2d2_postgres;
pub mod error;