##// END OF EJS Templates
rust-dependencies: update `regex` to 1.3.9...
Raphaël Gomès -
r45405:4313a0d7 default
parent child Browse files
Show More
@@ -223,7 +223,7 dependencies = [
223 223 "rand_distr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
224 224 "rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
225 225 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
226 "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
226 "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
227 227 "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
228 228 "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
229 229 "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -369,7 +369,7 version = "0.4.1"
369 369 source = "registry+https://github.com/rust-lang/crates.io-index"
370 370 dependencies = [
371 371 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
372 "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
372 "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
373 373 ]
374 374
375 375 [[package]]
@@ -378,7 +378,7 version = "0.4.1"
378 378 source = "registry+https://github.com/rust-lang/crates.io-index"
379 379 dependencies = [
380 380 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
381 "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
381 "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
382 382 ]
383 383
384 384 [[package]]
@@ -471,18 +471,18 source = "registry+https://github.com/ru
471 471
472 472 [[package]]
473 473 name = "regex"
474 version = "1.3.6"
474 version = "1.3.9"
475 475 source = "registry+https://github.com/rust-lang/crates.io-index"
476 476 dependencies = [
477 477 "aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
478 478 "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
479 "regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)",
479 "regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)",
480 480 "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
481 481 ]
482 482
483 483 [[package]]
484 484 name = "regex-syntax"
485 version = "0.6.17"
485 version = "0.6.18"
486 486 source = "registry+https://github.com/rust-lang/crates.io-index"
487 487
488 488 [[package]]
@@ -701,8 +701,8 source = "registry+https://github.com/ru
701 701 "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
702 702 "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
703 703 "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
704 "checksum regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7f6946991529684867e47d86474e3a6d0c0ab9b82d5821e314b1ede31fa3a4b3"
705 "checksum regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
704 "checksum regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
705 "checksum regex-syntax 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)" = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8"
706 706 "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
707 707 "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
708 708 "checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
@@ -19,7 +19,7 rand = "0.7.3"
19 19 rand_pcg = "0.2.1"
20 20 rand_distr = "0.2.2"
21 21 rayon = "1.3.0"
22 regex = "1.3.6"
22 regex = "1.3.9"
23 23 twox-hash = "1.5.0"
24 24 same-file = "1.0.6"
25 25 crossbeam = "0.7.3"
General Comments 0
You need to be logged in to leave comments. Login now