forked from rayon-rs/rayon
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
34 lines (29 loc) · 876 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
[package]
name = "rustc-rayon"
version = "0.5.0"
authors = ["Niko Matsakis <[email protected]>",
"Josh Stone <[email protected]>"]
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]
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"