regex-pool 0.1.1

Thread-safe reusable object pooling extracted from regex-automata.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# regex-pool

`regex-pool` is a minimal crate containing the reusable pool implementation
from [`rust-lang/regex`](https://github.com/rust-lang/regex).

This repository is a fork/copy of that pool code with a few minor local changes.
It is intended for consumers that only need:

```rust
use regex_pool::util::pool::{Pool, PoolGuard};
```