fastpool 0.1.0

This crates implements a fast object pool for Async Rust.
Documentation
# Fastpool

[![Crates.io][crates-badge]][crates-url]
[![Documentation][docs-badge]][docs-url]
[![MSRV 1.80][msrv-badge]](https://www.whatrustisit.com)
[![Apache 2.0 licensed][license-badge]][license-url]
[![Build Status][actions-badge]][actions-url]

[crates-badge]: https://img.shields.io/crates/v/fastpool.svg
[crates-url]: https://crates.io/crates/fastpool
[docs-badge]: https://docs.rs/fastpool/badge.svg
[msrv-badge]: https://img.shields.io/badge/MSRV-1.80-green?logo=rust
[docs-url]: https://docs.rs/fastpool
[license-badge]: https://img.shields.io/crates/l/fastpool
[license-url]: LICENSE
[actions-badge]: https://github.com/fast/fastpool/workflows/CI/badge.svg
[actions-url]:https://github.com/fast/fastpool/actions?query=workflow%3ACI

## Overview

Fastpool implements a fast object pool for Async Rust.

## Installation

Add the dependency to your `Cargo.toml` via:

```shell
cargo add fastpool
```

## Documentation

Read the online documents at https://docs.rs/fastpool.

## Minimum Supported Rust Version (MSRV)

This crate is built against the latest stable release, and its minimum supported rustc version is 1.80.0.

The policy is that the minimum Rust version required to use this crate can be increased in minor version updates. For example, if Fastpool 1.0 requires Rust 1.20.0, then Fastpool 1.0.z for all values of z will also require Rust 1.20.0 or newer. However, Fastpool 1.y for y > 0 may require a newer minimum version of Rust.

## License

This project is licensed under [Apache License, Version 2.0](LICENSE).