From 1e1e2348bff80614575ef4696ac558a67b11b356 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Apr 2023 12:15:07 +0000 Subject: [PATCH] build(deps): bump regex from 1.7.3 to 1.8.1 (#6555) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.1. - [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.7.3...1.8.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 29 ++++++++++++++++++++++------- zebra-network/Cargo.toml | 2 +- zebra-state/Cargo.toml | 2 +- zebra-test/Cargo.toml | 2 +- zebra-utils/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 6 files changed, 27 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52c5606e..48a9eb4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -124,6 +124,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "aho-corasick" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" +dependencies = [ + "memchr", +] + [[package]] name = "android_system_properties" version = "0.1.5" @@ -1736,7 +1745,7 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" dependencies = [ - "aho-corasick", + "aho-corasick 0.7.20", "bstr", "fnv", "log", @@ -3460,7 +3469,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "rand_xorshift", - "regex-syntax", + "regex-syntax 0.6.29", "rusty-fork", "tempfile", "unarray", @@ -3805,13 +3814,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.3" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" dependencies = [ - "aho-corasick", + "aho-corasick 1.0.1", "memchr", - "regex-syntax", + "regex-syntax 0.7.1", ] [[package]] @@ -3820,7 +3829,7 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" dependencies = [ - "regex-syntax", + "regex-syntax 0.6.29", ] [[package]] @@ -3829,6 +3838,12 @@ version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +[[package]] +name = "regex-syntax" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" + [[package]] name = "reqwest" version = "0.11.16" diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index e0622653..148d74ee 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -35,7 +35,7 @@ ordered-map = "0.4.2" pin-project = "1.0.12" rand = { version = "0.8.5", package = "rand" } rayon = "1.7.0" -regex = "1.7.3" +regex = "1.8.1" serde = { version = "1.0.160", features = ["serde_derive"] } thiserror = "1.0.40" diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index 5c0f6068..f5f274d2 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -43,7 +43,7 @@ itertools = "0.10.5" lazy_static = "1.4.0" metrics = "0.21.0" mset = "0.1.1" -regex = "1.7.3" +regex = "1.8.1" rlimit = "0.9.1" rocksdb = { version = "0.20.1", default_features = false, features = ["lz4"] } serde = { version = "1.0.160", features = ["serde_derive"] } diff --git a/zebra-test/Cargo.toml b/zebra-test/Cargo.toml index c3b5491b..4174f76e 100644 --- a/zebra-test/Cargo.toml +++ b/zebra-test/Cargo.toml @@ -15,7 +15,7 @@ insta = "1.29.0" proptest = "1.1.0" once_cell = "1.17.1" rand = { version = "0.8.5", package = "rand" } -regex = "1.7.3" +regex = "1.8.1" tokio = { version = "1.27.0", features = ["full", "tracing", "test-util"] } tower = { version = "0.4.13", features = ["util"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index b6f9839e..1834f927 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -49,7 +49,7 @@ tracing-subscriber = "0.3.16" thiserror = "1.0.40" # These crates are needed for the search-issue-refs binary -regex = { version = "1.7.1", optional = true } +regex = { version = "1.8.1", optional = true } reqwest = { version = "0.11.14", optional = true } tokio = { version = "1.27.0", features = ["full"], optional = true } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 72099a91..6f828a99 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -190,7 +190,7 @@ abscissa_core = { version = "0.5", features = ["testing"] } hex = "0.4.3" jsonrpc-core = "18.0.0" once_cell = "1.17.1" -regex = "1.7.3" +regex = "1.8.1" semver = "1.0.17" # zebra-rpc needs the preserve_order feature, it also makes test results more stable