rustc-rayon 0.1.0

Simple work-stealing parallelism for Rust - fork for rustc
Documentation
[package]
name = "rustc-rayon"
# Reminder to update html_rool_url in lib.rs when updating version
version = "0.1.0"
authors = ["Niko Matsakis <niko@alum.mit.edu>",
           "Josh Stone <cuviper@gmail.com>"]
description = "Simple work-stealing parallelism for Rust - fork for rustc"
license = "Apache-2.0/MIT"
repository = "https://github.com/Zoxc/rayon/tree/rustc"
documentation = "https://docs.rs/rustc-rayon/"
readme = "README.md"
keywords = ["parallel", "thread", "concurrency", "join", "performance"]
categories = ["concurrency"]

[workspace]
members = ["rayon-core"]
exclude = ["ci"]

[dependencies]
rustc-rayon-core = { version = "0.1", path = "rayon-core" }

# This is a public dependency!
[dependencies.either]
version = "1.0"
default-features = false

[dev-dependencies]
docopt = "0.8"
lazy_static = "1"
rand = ">= 0.3, < 0.5"
serde = "1"
serde_derive = "1"

# mingw linking rustc crates is missing -ldbghelp, rust-lang/rust#47359
[target.'cfg(not(all(windows, target_env = "gnu")))'.dev-dependencies]
compiletest_rs = "0.3"