threadpool
==========
A thread pool for running a number of jobs on a fixed set of worker threads.
[](https://travis-ci.org/rust-lang/threadpool)
[Documentation](http://doc.rust-lang.org/threadpool)
Add this to your `Cargo.toml`:
```toml
[dependencies]
threadpool = "0.1"
```
and this to your crate root:
```rust
extern crate threadpool;
```