]> git.proxmox.com Git - rustc.git/blob - src/vendor/rayon/Cargo.toml.orig
New upstream version 1.25.0+dfsg1
[rustc.git] / src / vendor / rayon / Cargo.toml.orig
1 [package]
2 name = "rayon"
3 # Reminder to update html_rool_url in lib.rs when updating version
4 version = "1.0.0"
5 authors = ["Niko Matsakis <niko@alum.mit.edu>",
6 "Josh Stone <cuviper@gmail.com>"]
7 description = "Simple work-stealing parallelism for Rust"
8 license = "Apache-2.0/MIT"
9 repository = "https://github.com/rayon-rs/rayon"
10 documentation = "https://docs.rs/rayon/"
11 readme = "README.md"
12 keywords = ["parallel", "thread", "concurrency", "join", "performance"]
13 categories = ["concurrency"]
14
15 [workspace]
16 members = ["rayon-demo", "rayon-core", "rayon-futures"]
17 exclude = ["ci"]
18
19 [dependencies]
20 rayon-core = { version = "1.4", path = "rayon-core" }
21
22 # This is a public dependency!
23 [dependencies.either]
24 version = "1.0"
25 default-features = false
26
27 [dev-dependencies]
28 docopt = "0.8"
29 lazy_static = "1"
30 rand = ">= 0.3, < 0.5"
31 serde = "1"
32 serde_derive = "1"
33
34 # mingw linking rustc crates is missing -ldbghelp, rust-lang/rust#47359
35 [target.'cfg(not(all(windows, target_env = "gnu")))'.dev-dependencies]
36 compiletest_rs = "0.3"