From 3c1183fb385e6358cd11409f3175a02ffbcc430c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 May 2023 15:59:27 +0000 Subject: [PATCH] cargo: bump regex from 1.8.1 to 1.8.2 Bumps [regex](https://github.com/rust-lang/regex) from 1.8.1 to 1.8.2. - [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.8.1...1.8.2) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f92eeb338..36a411663 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1517,13 +1517,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.7.1", + "regex-syntax 0.7.2", ] [[package]] @@ -1543,9 +1543,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" +checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" [[package]] name = "roff" diff --git a/Cargo.toml b/Cargo.toml index e15e9c2cc..fb78f1eac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ maplit = "1.0.2" once_cell = "1.17.1" pest = "2.6.0" pest_derive = "2.6" -regex = "1.7.3" +regex = "1.8.2" rpassword = "7.2.0" serde = { version = "1.0", features = ["derive"] } slab = "0.4.8" @@ -72,7 +72,7 @@ libc = { version = "0.2.144" } assert_cmd = "2.0.8" assert_matches = "1.5.0" insta = { version = "1.29.0", features = ["filters"] } -regex = "1.7.3" +regex = "1.8.2" testutils = { path = "lib/testutils" } [features] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 00c14cf91..6807ca1a0 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -38,7 +38,7 @@ pest_derive = "2.6.0" prost = "0.11.9" rand = "0.8.5" rand_chacha = "0.3.1" -regex = "1.7.3" +regex = "1.8.2" serde_json = "1.0.96" smallvec = { version = "1.10.0", features = ["const_generics", "const_new", "union"] } tempfile = "3.5.0"