1//! A simple thread pool implementation 2#![warn(missing_docs)] 3#![feature(panic_update_hook)] 4#![feature(thread_local)] 5 6pub use thread_pool::ThreadPool; 7 8mod thread_pool; 9mod utils;