diff --git a/Cargo.lock b/Cargo.lock index 384a0c8cc51a68..ad52743a7b0b98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3006,10 +3006,11 @@ dependencies = [ [[package]] name = "rayon" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" +checksum = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080" dependencies = [ + "autocfg 1.0.0", "crossbeam-deque", "either", "rayon-core", @@ -3017,9 +3018,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.7.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" +checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280" dependencies = [ "crossbeam-deque", "crossbeam-queue", diff --git a/accounts-bench/Cargo.toml b/accounts-bench/Cargo.toml index f9c3850308ea20..4c8eeb8ed2b3ff 100644 --- a/accounts-bench/Cargo.toml +++ b/accounts-bench/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://solana.com/" [dependencies] log = "0.4.6" -rayon = "1.3.0" +rayon = "1.3.1" solana-logger = { path = "../logger", version = "1.3.0" } solana-runtime = { path = "../runtime", version = "1.3.0" } solana-measure = { path = "../measure", version = "1.3.0" } diff --git a/banking-bench/Cargo.toml b/banking-bench/Cargo.toml index 1b8f8e3887bbd9..6469953a8bd147 100644 --- a/banking-bench/Cargo.toml +++ b/banking-bench/Cargo.toml @@ -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.3.1" solana-core = { path = "../core", version = "1.3.0" } solana-clap-utils = { path = "../clap-utils", version = "1.3.0" } solana-streamer = { path = "../streamer", version = "1.3.0" } diff --git a/bench-exchange/Cargo.toml b/bench-exchange/Cargo.toml index 3a33644555565a..c22f980353f115 100644 --- a/bench-exchange/Cargo.toml +++ b/bench-exchange/Cargo.toml @@ -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.3.1" serde_json = "1.0.54" serde_yaml = "0.8.13" solana-clap-utils = { path = "../clap-utils", version = "1.3.0" } diff --git a/bench-tps/Cargo.toml b/bench-tps/Cargo.toml index f1ff04e548bd21..d917f24898d7b4 100644 --- a/bench-tps/Cargo.toml +++ b/bench-tps/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://solana.com/" bincode = "1.2.1" clap = "2.33.1" log = "0.4.8" -rayon = "1.3.0" +rayon = "1.3.1" serde_json = "1.0.54" serde_yaml = "0.8.13" solana-clap-utils = { path = "../clap-utils", version = "1.3.0" } diff --git a/client/Cargo.toml b/client/Cargo.toml index 95e3bd2ea687b6..268fb431f36d1c 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -14,7 +14,7 @@ bs58 = "0.3.1" indicatif = "0.15.0" jsonrpc-core = "14.2.0" log = "0.4.8" -rayon = "1.3.0" +rayon = "1.3.1" reqwest = { version = "0.10.6", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde = "1.0.112" serde_derive = "1.0.103" diff --git a/core/Cargo.toml b/core/Cargo.toml index 0f426dd37bf0ad..cb02fd172afd11 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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.3.1" regex = "1.3.9" serde = "1.0.112" serde_derive = "1.0.103" diff --git a/dos/Cargo.toml b/dos/Cargo.toml index a84ebedac2455c..d5e8f1766d1073 100644 --- a/dos/Cargo.toml +++ b/dos/Cargo.toml @@ -12,7 +12,7 @@ bincode = "1.2.1" clap = "2.33.1" log = "0.4.8" rand = "0.7.0" -rayon = "1.3.0" +rayon = "1.3.1" solana-clap-utils = { path = "../clap-utils", version = "1.3.0" } solana-core = { path = "../core", version = "1.3.0" } solana-ledger = { path = "../ledger", version = "1.3.0" } diff --git a/ledger/Cargo.toml b/ledger/Cargo.toml index a1ac7ec0797383..a4feee8d682282 100644 --- a/ledger/Cargo.toml +++ b/ledger/Cargo.toml @@ -24,7 +24,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.3.1" reed-solomon-erasure = { version = "4.0.2", features = ["simd-accel"] } serde = "1.0.112" serde_bytes = "0.11.4" diff --git a/perf/Cargo.toml b/perf/Cargo.toml index 9c0d760e8fa4b0..dab8d04946c2ea 100644 --- a/perf/Cargo.toml +++ b/perf/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" rand = "0.7.0" dlopen = "0.1.8" bincode = "1.2.1" -rayon = "1.3.0" +rayon = "1.3.1" serde = "1.0.112" dlopen_derive = "0.1.4" lazy_static = "1.4.0" diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 638fb3f00d08c8..25ed3f087f0b48 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -1153,17 +1153,18 @@ dependencies = [ [[package]] name = "rayon" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.7.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1664,7 +1665,7 @@ dependencies = [ "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.112 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.112 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2534,8 +2535,8 @@ dependencies = [ "checksum rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" -"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" +"checksum rayon 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080" +"checksum rayon-core 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" "checksum regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6" "checksum regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)" = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" diff --git a/programs/librapay/Cargo.lock b/programs/librapay/Cargo.lock index c224bb82cd2969..9d3fb6e2ffce52 100644 --- a/programs/librapay/Cargo.lock +++ b/programs/librapay/Cargo.lock @@ -1966,17 +1966,18 @@ dependencies = [ [[package]] name = "rayon" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rayon-core" -version = "1.7.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2494,7 +2495,7 @@ dependencies = [ "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.112 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.112 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2891,7 +2892,7 @@ dependencies = [ "mirai-annotations 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "prometheus 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "proptest 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "rental 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "solana_libra_bytecode_verifier 0.0.1-sol5 (registry+https://github.com/rust-lang/crates.io-index)", "solana_libra_canonical_serialization 0.0.1-sol5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4015,8 +4016,8 @@ dependencies = [ "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" "checksum rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" -"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" +"checksum rayon 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080" +"checksum rayon-core 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" "checksum redox_users 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431" diff --git a/programs/move_loader/Cargo.lock b/programs/move_loader/Cargo.lock index 0858166ba56280..2d88f11287e3c2 100644 --- a/programs/move_loader/Cargo.lock +++ b/programs/move_loader/Cargo.lock @@ -2025,10 +2025,11 @@ dependencies = [ [[package]] name = "rayon" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" +checksum = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080" dependencies = [ + "autocfg 1.0.0", "crossbeam-deque", "either", "rayon-core", @@ -2036,9 +2037,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.7.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" +checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280" dependencies = [ "crossbeam-deque", "crossbeam-queue", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 22e4e31763e260..2d9bc4b9440d0c 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -27,7 +27,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.3.1" regex = "1.3.9" serde = { version = "1.0.112", features = ["rc"] } serde_derive = "1.0.103"