blob: 8b110fdda20ab6043495455bbd6a4908b3a45d7c [file] [log] [blame]
Jakub Kotur3b7f3172020-12-21 17:28:15 +01001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "rayon-core"
Joel Galenson3e7fe752021-05-19 16:32:47 -070016version = "1.9.1"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010017authors = ["Niko Matsakis <niko@alum.mit.edu>", "Josh Stone <cuviper@gmail.com>"]
18build = "build.rs"
19links = "rayon-core"
20description = "Core APIs for Rayon"
21documentation = "https://docs.rs/rayon/"
22readme = "README.md"
23keywords = ["parallel", "thread", "concurrency", "join", "performance"]
24categories = ["concurrency"]
25license = "Apache-2.0/MIT"
26repository = "https://github.com/rayon-rs/rayon"
27
28[[test]]
29name = "stack_overflow_crash"
30path = "tests/stack_overflow_crash.rs"
31harness = false
32
33[[test]]
34name = "double_init_fail"
35path = "tests/double_init_fail.rs"
36
37[[test]]
38name = "init_zero_threads"
39path = "tests/init_zero_threads.rs"
40
41[[test]]
42name = "scope_join"
43path = "tests/scope_join.rs"
44
45[[test]]
46name = "simple_panic"
47path = "tests/simple_panic.rs"
48
49[[test]]
50name = "scoped_threadpool"
51path = "tests/scoped_threadpool.rs"
52[dependencies.crossbeam-channel]
53version = "0.5.0"
54
55[dependencies.crossbeam-deque]
56version = "0.8.0"
57
58[dependencies.crossbeam-utils]
59version = "0.8.0"
60
61[dependencies.lazy_static]
62version = "1"
63
64[dependencies.num_cpus]
65version = "1.2"
66[dev-dependencies.rand]
Joel Galenson3e7fe752021-05-19 16:32:47 -070067version = "0.8"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010068
69[dev-dependencies.rand_xorshift]
Joel Galenson3e7fe752021-05-19 16:32:47 -070070version = "0.3"
Jakub Kotur3b7f3172020-12-21 17:28:15 +010071
72[dev-dependencies.scoped-tls]
73version = "1.0"
74[target."cfg(unix)".dev-dependencies.libc]
75version = "0.2"