thread-pool 0.1.1

A thread pool for running a number of jobs on shared worker threads.
Documentation
# Thread pool for Rust

A library for executing tasks on reusable threads.

[![Build Status](https://travis-ci.org/carllerche/thread-pool.svg?branch=master)](https://travis-ci.org/carllerche/thread-pool)
[![Crates.io](https://img.shields.io/crates/v/thread-pool.svg?maxAge=2592000)](https://crates.io/crates/thread-pool)

[Documentation](https://docs.rs/thread-pool)

## Usage

First add this to your `Cargo.toml`

```toml
[dependencies]
thread-pool = "0.1"
```

Next, add this to your crate:

```rust
extern crate thread_pool;

use thread_pool::ThreadPool;
```

## License

`thread-pool` is primarily distributed under the terms of both the MIT
license and the Apache License (Version 2.0), with portions covered by various
BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.

The library is also inspired from parts of [JSR-166](http://g.oswego.edu/dl/concurrency-interest/) which is released to the [public domain](https://creativecommons.org/licenses/publicdomain/).