threadpool 0.2.1

A thread pool for running a number of jobs on a fixed set of worker threads.
Documentation
threadpool
==========

A thread pool for running a number of jobs on a fixed set of worker threads.

[![Build Status](https://travis-ci.org/frewsxcv/rust-threadpool.svg?branch=master)](https://travis-ci.org/frewsxcv/rust-threadpool)

[Documentation](http://doc.rust-lang.org/threadpool)

## Usage

Add this to your `Cargo.toml`:

```toml
[dependencies]

threadpool = "0.1"
```

and this to your crate root:

```rust
extern crate threadpool;
```