forked from rayon-rs/rayon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.01 KB
/
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
36
37
38
39
40
41
[package]
name = "rayon"
# Reminder to update html_rool_url in lib.rs when updating version
version = "1.3.1"
authors = ["Niko Matsakis <[email protected]>",
"Josh Stone <[email protected]>"]
description = "Simple work-stealing parallelism for Rust"
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/rayon-rs/rayon"
documentation = "https://docs.rs/rayon/"
readme = "README.md"
keywords = ["parallel", "thread", "concurrency", "join", "performance"]
categories = ["concurrency"]
exclude = ["/ci/*", "/scripts/*", "/.github/*", "/bors.toml"]
[workspace]
members = ["rayon-demo", "rayon-core"]
exclude = ["ci"]
[dependencies]
rayon-core = { version = "1.7.1", path = "rayon-core" }
crossbeam-deque = "0.7.2"
# This is a public dependency!
[dependencies.either]
version = "1.0"
default-features = false
[dev-dependencies]
docopt = "1"
lazy_static = "1"
rand = "0.7"
rand_xorshift = "0.2"
[dev-dependencies.serde]
version = "1.0.85"
features = ["derive"]
[build-dependencies]
autocfg = "1"