forked from rayon-rs/rayon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 953 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
36
[package]
name = "rayon"
# Reminder to update html_root_url in lib.rs when updating version
version = "1.5.3"
authors = ["Niko Matsakis <niko@alum.mit.edu>",
"Josh Stone <cuviper@gmail.com>"]
description = "Simple work-stealing parallelism for Rust"
edition = "2018"
license = "MIT OR Apache-2.0"
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.9.2", path = "rayon-core" }
crossbeam-deque = "0.8.1"
# This is a public dependency!
[dependencies.either]
version = "1.0"
default-features = false
[dev-dependencies]
lazy_static = "1"
rand = "0.8"
rand_xorshift = "0.3"
[build-dependencies]
autocfg = "1"