From c34465d660eb5503a35fa48da30625978e392d46 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 22:02:14 +0000 Subject: [PATCH] Bump regex from 1.5.4 to 1.5.5 Bumps [regex](https://github.com/rust-lang/regex) from 1.5.4 to 1.5.5. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.5.4...1.5.5) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- depdive/Cargo.toml | 2 +- web-backend/metrics/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e9c11e6..83141b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2312,9 +2312,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/depdive/Cargo.toml b/depdive/Cargo.toml index 920f002..07ff8cb 100644 --- a/depdive/Cargo.toml +++ b/depdive/Cargo.toml @@ -27,7 +27,7 @@ tempfile = "3.2.0" # temporary folder helper serde = { version = "1.0", features = ["derive"] } # bson serialization serde_json = "1.0" # bson serialization tracing = "0.1.22" # logging -regex = "1.4.3" # used for checking diff output +regex = "1.5.5" # used for checking diff output chrono = "0.4" # used for datetime of mongodb document guppy = { version = "0.9.0", features = ["summaries"] } # library to analyze deps semver = "0.11.0" # semver of dependencies diff --git a/web-backend/metrics/Cargo.toml b/web-backend/metrics/Cargo.toml index b638a07..2d65d94 100644 --- a/web-backend/metrics/Cargo.toml +++ b/web-backend/metrics/Cargo.toml @@ -15,7 +15,7 @@ serde_json = "1.0" # bson serialization tokio = { version = "1.6.1", features = ["full"] } # old version because of mongodb driver... futures = "0.3.12" # async stuff tracing = "0.1.22" # logging -regex = "1.4.3" # used for checking diff output +regex = "1.5.5" # used for checking diff output chrono = "0.4" # used for datetime of mongodb document rust-crypto = "0.2" # used to hash the repo url (to derive a folder dir)