sqlite_rwc/
lib.rs

1#![doc = include_str!("../README.md")]
2#[cfg(feature = "async")]
3mod async_adapter;
4pub mod drivers;
5mod pool;
6mod sync_adapter;
7
8#[cfg(feature = "async")]
9pub use async_adapter::*;
10pub use pool::*;
11pub use sync_adapter::*;