[package]
edition = "2018"
name = "executors"
version = "0.5.2"
authors = ["Lars Kroll <lkroll@kth.se>"]
description = "A collection of high-performance task executors."
homepage = "https://github.com/Bathtor/rust-executors"
documentation = "https://docs.rs/executors"
readme = "../README.md"
keywords = ["executor", "concurrency", "thread"]
categories = ["concurrency", "asynchronous"]
license = "MIT"
repository = "https://github.com/Bathtor/rust-executors"
[dependencies.arr_macro]
version = "0.1.2"
[dependencies.crossbeam-channel]
version = "0.3"
optional = true
[dependencies.crossbeam-deque]
version = "0.7"
optional = true
[dependencies.crossbeam-utils]
version = "0.6"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.num_cpus]
version = "1.10"
optional = true
[dependencies.rand]
version = "0.7"
optional = true
[dependencies.synchronoise]
version = "1.0"
[dependencies.threadpool]
version = "1.7"
optional = true
[dependencies.time]
version = "0.1"
optional = true
[dev-dependencies.env_logger]
version = "0.6"
[dev-dependencies.version-sync]
version = "0.8"
[features]
cb-channel-exec = ["crossbeam-channel"]
default = ["threadpool-exec", "cb-channel-exec", "workstealing-exec", "ws-timed-fairness", "defaults"]
defaults = ["num_cpus"]
threadpool-exec = ["threadpool"]
workstealing-exec = ["crossbeam-channel", "crossbeam-deque", "rand", "crossbeam-utils"]
ws-no-park = []
ws-timed-fairness = ["time"]
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
branch = "master"
repository = "Bathtor/rust-executors"