##// END OF EJS Templates
rust: upgrade minimum `rayon` dependency...
Raphaël Gomès -
r50995:812a9fbf stable
parent child Browse files
Show More
@@ -232,9 +232,9 b' dependencies = ['
232
232
233 [[package]]
233 [[package]]
234 name = "crossbeam-deque"
234 name = "crossbeam-deque"
235 version = "0.8.0"
235 version = "0.8.2"
236 source = "registry+https://github.com/rust-lang/crates.io-index"
236 source = "registry+https://github.com/rust-lang/crates.io-index"
237 checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
237 checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
238 dependencies = [
238 dependencies = [
239 "cfg-if 1.0.0",
239 "cfg-if 1.0.0",
240 "crossbeam-epoch",
240 "crossbeam-epoch",
@@ -916,26 +916,23 b' dependencies = ['
916
916
917 [[package]]
917 [[package]]
918 name = "rayon"
918 name = "rayon"
919 version = "1.5.1"
919 version = "1.6.1"
920 source = "registry+https://github.com/rust-lang/crates.io-index"
920 source = "registry+https://github.com/rust-lang/crates.io-index"
921 checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
921 checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
922 dependencies = [
922 dependencies = [
923 "autocfg",
924 "crossbeam-deque",
925 "either",
923 "either",
926 "rayon-core",
924 "rayon-core",
927 ]
925 ]
928
926
929 [[package]]
927 [[package]]
930 name = "rayon-core"
928 name = "rayon-core"
931 version = "1.9.1"
929 version = "1.10.2"
932 source = "registry+https://github.com/rust-lang/crates.io-index"
930 source = "registry+https://github.com/rust-lang/crates.io-index"
933 checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
931 checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
934 dependencies = [
932 dependencies = [
935 "crossbeam-channel",
933 "crossbeam-channel",
936 "crossbeam-deque",
934 "crossbeam-deque",
937 "crossbeam-utils",
935 "crossbeam-utils",
938 "lazy_static",
939 "num_cpus",
936 "num_cpus",
940 ]
937 ]
941
938
@@ -23,7 +23,7 b' ouroboros = "0.15.0"'
23 rand = "0.8.4"
23 rand = "0.8.4"
24 rand_pcg = "0.3.1"
24 rand_pcg = "0.3.1"
25 rand_distr = "0.4.3"
25 rand_distr = "0.4.3"
26 rayon = "1.5.1"
26 rayon = "1.6.1"
27 regex = "1.5.5"
27 regex = "1.5.5"
28 sha-1 = "0.10.0"
28 sha-1 = "0.10.0"
29 twox-hash = "1.6.2"
29 twox-hash = "1.6.2"
@@ -22,4 +22,4 b' env_logger = "0.9.0"'
22 format-bytes = "0.3.0"
22 format-bytes = "0.3.0"
23 users = "0.11.0"
23 users = "0.11.0"
24 which = "4.2.5"
24 which = "4.2.5"
25 rayon = "1.5.1"
25 rayon = "1.6.1"
General Comments 0
You need to be logged in to leave comments. Login now