forked from rayon-rs/rayon
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
35 lines (30 loc) · 922 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "rustc-rayon"
version = "0.5.1"
authors = ["Niko Matsakis <niko@alum.mit.edu>",
"Josh Stone <cuviper@gmail.com>"]
description = "Simple work-stealing parallelism for Rust - fork for rustc"
rust-version = "1.59"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/rustc-rayon"
documentation = "https://docs.rs/rustc-rayon/"
readme = "README.md"
keywords = ["parallel", "thread", "concurrency", "join", "performance"]
categories = ["concurrency"]
exclude = ["/ci/*", "/scripts/*", "/.github/*", "/bors.toml"]
[workspace]
members = ["rayon-core"]
exclude = ["ci"]
[lib]
name = "rayon"
[dependencies]
indexmap = { version = "2", optional = true }
rustc-rayon-core = { version = "0.5", path = "rayon-core" }
# This is a public dependency!
[dependencies.either]
version = "1.0"
default-features = false
[dev-dependencies]
rand = "0.8"
rand_xorshift = "0.3"