executors 0.8.0

A collection of high-performance task executors.
Documentation
[[bench]]
harness = false
name = "scheduler"
path = "benches/scheduler.rs"
[badges.maintenance]
status = "actively-developed"

[badges.travis-ci]
branch = "master"
repository = "Bathtor/rust-executors"
[dependencies.arr_macro]
version = "0.1"

[dependencies.async-task]
optional = true
version = "4.0"

[dependencies.core_affinity]
optional = true
version = "0.5"

[dependencies.crossbeam-channel]
optional = true
version = "0.4"

[dependencies.crossbeam-deque]
optional = true
version = "0.7"

[dependencies.crossbeam-utils]
optional = true
version = "0.7"

[dependencies.log]
version = "0.4"

[dependencies.num_cpus]
optional = true
version = "1"

[dependencies.rand]
optional = true
version = "0.7"

[dependencies.synchronoise]
version = "1.0"

[dependencies.threadpool]
optional = true
version = "1.8"
[dev-dependencies.criterion]
version = "0.3"

[dev-dependencies.env_logger]
version = "0.7"

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.version-sync]
version = "0.9"

[features]
cb-channel-exec = ["crossbeam-channel", "async-task"]
default = ["threadpool-exec", "cb-channel-exec", "workstealing-exec", "ws-timed-fairness", "defaults"]
defaults = ["num_cpus"]
numa-aware = ["thread-pinning"]
thread-pinning = ["core_affinity"]
threadpool-exec = ["threadpool"]
workstealing-exec = ["crossbeam-channel", "crossbeam-deque", "rand", "crossbeam-utils", "async-task"]
ws-no-park = []
ws-timed-fairness = []

[package]
authors = ["Lars Kroll <lkroll@kth.se>"]
categories = ["concurrency", "asynchronous"]
description = "A collection of high-performance task executors."
documentation = "https://docs.rs/executors"
edition = "2018"
homepage = "https://github.com/Bathtor/rust-executors"
keywords = ["executor", "concurrency", "thread"]
license = "MIT"
name = "executors"
readme = "../README.md"
repository = "https://github.com/Bathtor/rust-executors"
version = "0.8.0"
[package.metadata.docs.rs]
features = ["numa-aware"]