executors 0.4.3

A collection of high-performance task executors.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "executors"
version = "0.4.3"
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.crossbeam-channel]
version = "0.3"
optional = true

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

[dependencies.log]
version = "0.4"

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

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

[dependencies.synchronoise]
version = "0.4"

[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.7"

[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"]
ws-timed-fairness = ["time"]
[badges.maintenance]
status = "actively-developed"

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