1[package] 2 3name = "threadpool" 4version = "1.8.1" 5authors = ["The Rust Project Developers", "Corey Farwell <coreyf@rwell.org>", "Stefan Schindler <dns2utf8@estada.ch>"] 6license = "MIT/Apache-2.0" 7readme = "README.md" 8repository = "https://github.com/rust-threadpool/rust-threadpool" 9homepage = "https://github.com/rust-threadpool/rust-threadpool" 10documentation = "https://docs.rs/threadpool" 11description = """ 12A thread pool for running a number of jobs on a fixed set of worker threads. 13""" 14keywords = ["threadpool", "thread", "pool", "threading", "parallelism"] 15categories = ["concurrency", "os"] 16 17include = [ 18 "**/*.rs", 19 "Cargo.toml", 20 "CHANGES.md", 21 "LICENSE-APACHE", 22 "LICENSE-MIT", 23] 24 25[dependencies] 26num_cpus = "1.13" 27