Threatpool is a simple thread pool with focus on simplicity.
use threatpool::ThreadPool; let pool = ThreadPool::new(4); pool.execute(|| { // Simulate some task println!("Hello, World"); });