Update to rayon 1.4.0 (bp #11898) (#11959)

* Update to rayon 1.4.0 (#11898)

Co-authored-by: sakridge <sakridge@gmail.com>
Co-authored-by: Carl <carl@solana.com>
This commit is contained in:
mergify[bot]
2020-08-31 20:38:33 -07:00
committed by GitHub
parent 1afd1db4fc
commit b34f179546
13 changed files with 44 additions and 20 deletions

10
Cargo.lock generated
View File

@@ -2679,9 +2679,9 @@ dependencies = [
[[package]]
name = "rayon"
version = "1.3.1"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080"
checksum = "cfd016f0c045ad38b5251be2c9c0ab806917f82da4d36b2a327e5166adad9270"
dependencies = [
"autocfg 1.0.0",
"crossbeam-deque",
@@ -2691,12 +2691,12 @@ dependencies = [
[[package]]
name = "rayon-core"
version = "1.7.1"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280"
checksum = "91739a34c4355b5434ce54c9086c5895604a9c278586d1f1aa95e04f66b525a0"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-queue",
"crossbeam-utils",
"lazy_static",
"num_cpus",

View File

@@ -9,7 +9,7 @@ homepage = "https://solana.com/"
[dependencies]
log = "0.4.6"
rayon = "1.3.0"
rayon = "1.4.0"
solana-logger = { path = "../logger", version = "1.2.27" }
solana-runtime = { path = "../runtime", version = "1.2.27" }
solana-measure = { path = "../measure", version = "1.2.27" }

View File

@@ -12,7 +12,7 @@ clap = "2.33.1"
crossbeam-channel = "0.4"
log = "0.4.6"
rand = "0.7.0"
rayon = "1.3.0"
rayon = "1.4.0"
solana-core = { path = "../core", version = "1.2.27" }
solana-clap-utils = { path = "../clap-utils", version = "1.2.27" }
solana-streamer = { path = "../streamer", version = "1.2.27" }

View File

@@ -15,7 +15,7 @@ log = "0.4.8"
num-derive = "0.3"
num-traits = "0.2"
rand = "0.7.0"
rayon = "1.3.0"
rayon = "1.4.0"
serde_json = "1.0.53"
serde_yaml = "0.8.12"
solana-clap-utils = { path = "../clap-utils", version = "1.2.27" }

View File

@@ -11,7 +11,7 @@ homepage = "https://solana.com/"
bincode = "1.3.1"
clap = "2.33.1"
log = "0.4.8"
rayon = "1.3.0"
rayon = "1.4.0"
serde_json = "1.0.53"
serde_yaml = "0.8.12"
solana-clap-utils = { path = "../clap-utils", version = "1.2.27" }

View File

@@ -14,7 +14,7 @@ bs58 = "0.3.1"
indicatif = "0.14.0"
jsonrpc-core = "14.1.0"
log = "0.4.8"
rayon = "1.3.0"
rayon = "1.4.0"
reqwest = { version = "0.10.4", default-features = false, features = ["blocking", "rustls-tls", "json"] }
serde = "1.0.110"
serde_derive = "1.0.103"

View File

@@ -37,7 +37,7 @@ num_cpus = "1.13.0"
num-traits = "0.2"
rand = "0.7.0"
rand_chacha = "0.2.2"
rayon = "1.3.0"
rayon = "1.4.0"
regex = "1.3.7"
serde = "1.0.110"
serde_derive = "1.0.103"

View File

@@ -12,7 +12,7 @@ bincode = "1.3.1"
clap = "2.33.1"
log = "0.4.8"
rand = "0.7.0"
rayon = "1.3.0"
rayon = "1.4.0"
solana-clap-utils = { path = "../clap-utils", version = "1.2.27" }
solana-core = { path = "../core", version = "1.2.27" }
solana-ledger = { path = "../ledger", version = "1.2.27" }

View File

@@ -27,7 +27,7 @@ log = { version = "0.4.8" }
num_cpus = "1.13.0"
rand = "0.7.0"
rand_chacha = "0.2.2"
rayon = "1.3.0"
rayon = "1.4.0"
reed-solomon-erasure = { version = "4.0.2", features = ["simd-accel"] }
regex = "1.3.7"
serde = "1.0.110"

View File

@@ -12,7 +12,7 @@ edition = "2018"
rand = "0.7.0"
dlopen = "0.1.8"
bincode = "1.3.1"
rayon = "1.3.0"
rayon = "1.4.0"
serde = "1.0.110"
dlopen_derive = "0.1.4"
lazy_static = "1.4.0"

24
poh-bench/Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
edition = "2018"
name = "solana-poh-bench"
version = "1.4.0"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
[dependencies]
clap = "2.33.1"
log = "0.4.6"
rand = "0.7.0"
rayon = "1.4.0"
solana-logger = { path = "../logger", version = "1.4.0" }
solana-ledger = { path = "../ledger", version = "1.4.0" }
solana-sdk = { path = "../sdk", version = "1.4.0" }
solana-clap-utils = { path = "../clap-utils", version = "1.4.0" }
solana-measure = { path = "../measure", version = "1.4.0" }
solana-version = { path = "../version", version = "1.4.0" }
solana-perf = { path = "../perf", version = "1.4.0" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

View File

@@ -1248,9 +1248,9 @@ dependencies = [
[[package]]
name = "rayon"
version = "1.3.1"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080"
checksum = "cfd016f0c045ad38b5251be2c9c0ab806917f82da4d36b2a327e5166adad9270"
dependencies = [
"autocfg",
"crossbeam-deque",
@@ -1260,12 +1260,12 @@ dependencies = [
[[package]]
name = "rayon-core"
version = "1.7.1"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280"
checksum = "91739a34c4355b5434ce54c9086c5895604a9c278586d1f1aa95e04f66b525a0"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-queue",
"crossbeam-utils",
"lazy_static",
"num_cpus",

View File

@@ -24,7 +24,7 @@ num-derive = { version = "0.3" }
num-traits = { version = "0.2" }
num_cpus = "1.13.0"
rand = "0.7.0"
rayon = "1.3.0"
rayon = "1.4.0"
serde = { version = "1.0.110", features = ["rc"] }
serde_derive = "1.0.103"
solana-config-program = { path = "../programs/config", version = "1.2.27" }