blob: 6ab9dda0f941d442277872a590d37767ea1c1c64 [file] [log] [blame]
Jakub Kotur041839c2020-12-21 17:28:15 +01001[package]
2name = "rayon"
3# Reminder to update html_rool_url in lib.rs when updating version
Joel Galensondd2305d2021-05-19 16:31:56 -07004version = "1.5.1"
Jakub Kotur041839c2020-12-21 17:28:15 +01005authors = ["Niko Matsakis <niko@alum.mit.edu>",
6 "Josh Stone <cuviper@gmail.com>"]
7description = "Simple work-stealing parallelism for Rust"
8edition = "2018"
9license = "Apache-2.0/MIT"
10repository = "https://github.com/rayon-rs/rayon"
11documentation = "https://docs.rs/rayon/"
12readme = "README.md"
13keywords = ["parallel", "thread", "concurrency", "join", "performance"]
14categories = ["concurrency"]
15exclude = ["/ci/*", "/scripts/*", "/.github/*", "/bors.toml"]
16
17[workspace]
18members = ["rayon-demo", "rayon-core"]
19exclude = ["ci"]
20
21[dependencies]
Joel Galensondd2305d2021-05-19 16:31:56 -070022rayon-core = { version = "1.9.1", path = "rayon-core" }
Jakub Kotur041839c2020-12-21 17:28:15 +010023crossbeam-deque = "0.8.0"
24
25# This is a public dependency!
26[dependencies.either]
27version = "1.0"
28default-features = false
29
30[dev-dependencies]
31docopt = "1"
32lazy_static = "1"
Joel Galensondd2305d2021-05-19 16:31:56 -070033rand = "0.8"
34rand_xorshift = "0.3"
Jakub Kotur041839c2020-12-21 17:28:15 +010035
36[dev-dependencies.serde]
37version = "1.0.85"
38features = ["derive"]
39
40[build-dependencies]
41autocfg = "1"