[package]
name = "rayon-core"
version = "1.6.1"
authors = ["Niko Matsakis <niko@alum.mit.edu>",
"Josh Stone <cuviper@gmail.com>"]
description = "Core APIs for Rayon"
license = "Apache-2.0/MIT"
repository = "https://github.com/rayon-rs/rayon"
documentation = "https://docs.rs/rayon/"
links = "rayon-core"
build = "build.rs"
readme = "README.md"
keywords = ["parallel", "thread", "concurrency", "join", "performance"]
categories = ["concurrency"]
[dependencies]
num_cpus = "1.2"
lazy_static = "1"
crossbeam-deque = "0.7.2"
crossbeam-queue = "0.2"
crossbeam-utils = "0.7"
[dev-dependencies]
rand = "0.6"
rand_xorshift = "0.1"
scoped-tls = "1.0"
[target.'cfg(unix)'.dev-dependencies]
libc = "0.2"
[[test]]
name = "stack_overflow_crash"
path = "tests/stack_overflow_crash.rs"
harness = false
[[test]]
name = "double_init_fail"
path = "tests/double_init_fail.rs"
[[test]]
name = "init_zero_threads"
path = "tests/init_zero_threads.rs"
[[test]]
name = "scope_join"
path = "tests/scope_join.rs"
[[test]]
name = "simple_panic"
path = "tests/simple_panic.rs"
[[test]]
name = "scoped_threadpool"
path = "tests/scoped_threadpool.rs"