sqlite-rwc 0.4.0

Reader Writer Concurrency Setup for Sqlite3
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#[cfg(feature = "async")]
mod async_adapter;
pub mod drivers;
mod pool;
mod sync_adapter;

#[cfg(feature = "async")]
pub use async_adapter::*;
pub use pool::*;
pub use sync_adapter::*;