File: Cargo.toml

package info (click to toggle)
rust-threadfin 0.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: makefile: 2; sh: 1
file content (21 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (2)
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"