about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-04-27 17:08:11 +0000
committerbors <bors@rust-lang.org>2019-04-27 17:08:11 +0000
commita9c8c08ecb6740be5c0beaf94bbcc7c580eefec4 (patch)
treeb2c4c0b6e081345156cdfc072946a53b154d5860 /src
parentc751c7a4f47ddc3a9076d1fd45e5d3e557748280 (diff)
parent0e05a9bb85f3f1a766680593e2216446fb03c416 (diff)
downloadrust-a9c8c08ecb6740be5c0beaf94bbcc7c580eefec4.tar.gz
rust-a9c8c08ecb6740be5c0beaf94bbcc7c580eefec4.zip
Auto merge of #60288 - Zoxc:update-rayon, r=nikomatsakis
Update rustc-rayon version

r? @nikomatsakis
Diffstat (limited to 'src')
-rw-r--r--src/librustc/Cargo.toml4
-rw-r--r--src/librustc_data_structures/Cargo.toml4
-rw-r--r--src/librustc_driver/Cargo.toml2
-rw-r--r--src/librustc_interface/Cargo.toml2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/librustc/Cargo.toml b/src/librustc/Cargo.toml
index 2876024beb1..2468de99d60 100644
--- a/src/librustc/Cargo.toml
+++ b/src/librustc/Cargo.toml
@@ -20,8 +20,8 @@ num_cpus = "1.0"
 scoped-tls = "1.0"
 log = { version = "0.4", features = ["release_max_level_info", "std"] }
 polonius-engine = "0.7.0"
-rustc-rayon = "0.1.2"
-rustc-rayon-core = "0.1.2"
+rustc-rayon = "0.2.0"
+rustc-rayon-core = "0.2.0"
 rustc_apfloat = { path = "../librustc_apfloat" }
 rustc_target = { path = "../librustc_target" }
 rustc_macros = { path = "../librustc_macros" }
diff --git a/src/librustc_data_structures/Cargo.toml b/src/librustc_data_structures/Cargo.toml
index d586b376d45..5f3bac866d6 100644
--- a/src/librustc_data_structures/Cargo.toml
+++ b/src/librustc_data_structures/Cargo.toml
@@ -19,8 +19,8 @@ serialize = { path = "../libserialize" }
 graphviz = { path = "../libgraphviz" }
 cfg-if = "0.1.2"
 stable_deref_trait = "1.0.0"
-rayon = { version = "0.1.2", package = "rustc-rayon" }
-rayon-core = { version = "0.1.2", package = "rustc-rayon-core" }
+rayon = { version = "0.2.0", package = "rustc-rayon" }
+rayon-core = { version = "0.2.0", package = "rustc-rayon-core" }
 rustc-hash = "1.0.1"
 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
 
diff --git a/src/librustc_driver/Cargo.toml b/src/librustc_driver/Cargo.toml
index 5432f80a171..b28b015db75 100644
--- a/src/librustc_driver/Cargo.toml
+++ b/src/librustc_driver/Cargo.toml
@@ -14,7 +14,7 @@ arena = { path = "../libarena" }
 graphviz = { path = "../libgraphviz" }
 log = "0.4"
 env_logger = { version = "0.5", default-features = false }
-rayon = { version = "0.1.2", package = "rustc-rayon" }
+rayon = { version = "0.2.0", package = "rustc-rayon" }
 scoped-tls = "1.0"
 rustc = { path = "../librustc" }
 rustc_allocator = { path = "../librustc_allocator" }
diff --git a/src/librustc_interface/Cargo.toml b/src/librustc_interface/Cargo.toml
index ec934ee4821..fa2a5d2fc89 100644
--- a/src/librustc_interface/Cargo.toml
+++ b/src/librustc_interface/Cargo.toml
@@ -11,7 +11,7 @@ crate-type = ["dylib"]
 
 [dependencies]
 log = "0.4"
-rayon = { version = "0.1.1", package = "rustc-rayon" }
+rayon = { version = "0.2.0", package = "rustc-rayon" }
 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
 scoped-tls = "1.0"
 syntax = { path = "../libsyntax" }