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