blob: 920ffe5c6f3337e46bb0cf7a3188f333f369f4ee [file] [log] [blame]
Jakub Kotur3b7f3172020-12-21 17:28:15 +01001[package]
2name = "rayon-core"
Jeff Vander Stoepf1feb8e2023-04-03 18:08:09 +02003version = "1.11.0"
Jakub Kotur3b7f3172020-12-21 17:28:15 +01004authors = ["Niko Matsakis <niko@alum.mit.edu>",
5 "Josh Stone <cuviper@gmail.com>"]
6description = "Core APIs for Rayon"
Jeff Vander Stoepacae64b2022-12-13 14:15:36 +01007license = "MIT OR Apache-2.0"
Jakub Kotur3b7f3172020-12-21 17:28:15 +01008repository = "https://github.com/rayon-rs/rayon"
9documentation = "https://docs.rs/rayon/"
Jeff Vander Stoepf1feb8e2023-04-03 18:08:09 +020010rust-version = "1.59"
Jeff Vander Stoepacae64b2022-12-13 14:15:36 +010011edition = "2021"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010012links = "rayon-core"
13build = "build.rs"
14readme = "README.md"
15keywords = ["parallel", "thread", "concurrency", "join", "performance"]
16categories = ["concurrency"]
17
18# Some dependencies may not be their latest version, in order to support older rustc.
19[dependencies]
20num_cpus = "1.2"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010021crossbeam-channel = "0.5.0"
Jeff Vander Stoepacae64b2022-12-13 14:15:36 +010022crossbeam-deque = "0.8.1"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010023crossbeam-utils = "0.8.0"
24
25[dev-dependencies]
Joel Galenson3e7fe752021-05-19 16:32:47 -070026rand = "0.8"
27rand_xorshift = "0.3"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010028scoped-tls = "1.0"
29
30[target.'cfg(unix)'.dev-dependencies]
31libc = "0.2"
32
33[[test]]
34name = "stack_overflow_crash"
35path = "tests/stack_overflow_crash.rs"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010036
37# NB: having one [[test]] manually defined means we need to declare them all
38
39[[test]]
40name = "double_init_fail"
41path = "tests/double_init_fail.rs"
42
43[[test]]
44name = "init_zero_threads"
45path = "tests/init_zero_threads.rs"
46
47[[test]]
48name = "scope_join"
49path = "tests/scope_join.rs"
50
51[[test]]
52name = "simple_panic"
53path = "tests/simple_panic.rs"
54
55[[test]]
56name = "scoped_threadpool"
57path = "tests/scoped_threadpool.rs"