1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
[package]
name = "threadfin"
version = "0.1.2"
description = "A thread pool for running multiple tasks on a configurable group of threads."
authors = ["Stephen M. Coakley <me@stephencoakley.com>"]
license = "MIT"
keywords = ["threadpool", "thread", "pool", "parallel", "async"]
categories = ["concurrency"]
repository = "https://github.com/sagebind/threadfin"
documentation = "https://docs.rs/threadfin/"
readme = "README.md"
edition = "2018"
[dependencies]
crossbeam-channel = "0.5"
num_cpus = "1"
once_cell = "1"
waker-fn = "1"
[dev-dependencies]
futures-timer = "3"
|