Deadpool is a dead simple async pool for connections and objects of any type.
This crate implements a deadpool
manager for rusqlite
and provides a wrapper that ensures correct use of the connection
inside a separate thread.
| Feature | Description | Extra dependencies | Default |
| ------- | ----------- | ------------------ | ------- |
| rt_tokio_1
| Enable support for tokio crate | deadpool/rt_tokio_1
| yes |
| rt_async-std_1
| Enable support for async-std crate | deadpool/rt_async-std_1
| no |
| serde
| Enable support for serde crate | deadpool/serde
, serde/derive
| no |
```rust use deadpool_sqlite::{Config, Runtime};
async fn main() -> Result<(), Box
Licensed under either of
at your option.