From 0455aa96bfbe266b746b72814a39a4e34371120f Mon Sep 17 00:00:00 2001 From: Dmitry Kashitsyn Date: Wed, 4 Apr 2018 16:50:01 +0700 Subject: [PATCH] Ethcore now uses rayon to 0.9 as a dependency (#8296) (#8302) --- Cargo.lock | 2 +- ethcore/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1d14bcc17..72f2c9e25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -491,7 +491,7 @@ dependencies = [ "patricia-trie 0.1.0", "price-info 1.11.0", "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "rlp 0.2.1", "rlp_compress 0.1.0", "rlp_derive 0.1.0", diff --git a/ethcore/Cargo.toml b/ethcore/Cargo.toml index e87062992..9b943fbc1 100644 --- a/ethcore/Cargo.toml +++ b/ethcore/Cargo.toml @@ -45,7 +45,7 @@ num_cpus = "1.2" parity-machine = { path = "../machine" } parking_lot = "0.5" price-info = { path = "../price-info" } -rayon = "0.8" +rayon = "0.9" rand = "0.4" rlp = { path = "../util/rlp" } rlp_compress = { path = "../util/rlp_compress" }