deadpool-memcached 0.3.0

Dead simple async pool for memcached
Documentation
# Deadpool for Memcached [![Latest Version]https://img.shields.io/crates/v/deadpool-memcached.svg]https://crates.io/crates/deadpool-memcached [![Rust 1.75+]https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+"]https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html

Deadpool is a dead simple async pool for connections and objects of any type.

This crate implements a [`deadpool`](https://crates.io/crates/deadpool)
manager for [`async-memcached`](https://crates.io/crates/async-memcached).

## Example

```rust,ignore
use deadpool_memcached::Manager;

#[tokio::main]
async fn main() {
    let manager = Manager::new("localhost:11211");
    let mut client = pool.get().await.unwrap();
    println!("version: {:?}", client.version().await);
}
```

## License

Licensed under the MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>).