From 92ec3599363c710815c286e975bbb6cc748708dd Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 8 Mar 2022 15:16:56 -0500 Subject: [PATCH] deps: update regex to 1.5.5 due to CVE (#691) Prompted by the following CVE: https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html Addresses it by following the recommended fix of updating to 1.5.5. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 72534a71..dc24694d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1307,9 +1307,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.5.4" +version = "1.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" +checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 97572b7c..21547dc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ fxhash = "0.2.1" indexmap = "1.6.2" itertools = "0.10.0" once_cell = "1.5.2" -regex = "1.5.4" +regex = "1.5.5" serde = { version = "1.0.125", features = ["derive"] } sysinfo = "0.23.4" thiserror = "1.0.24"