Minimalist Thread Pool in Rust
Experimental - Not for production use
[Trunk Based Development](https://trunkbaseddevelopment.com/)
```rust
use threaded::ThreadPool;
// start thread pool with size of 2 workers
let tp = ThreadPool::new(2);
// execute job/closure using worker in thread pool
[MIT](LICENSE)