From 74a6cacdf8bc6539e945b603713d97595fa13ffd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Apr 2023 05:05:49 +0000 Subject: [PATCH] chore(deps): bump regex from 1.7.3 to 1.8.1 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] --- Cargo.lock | 31 +++++++++++++++++++++++-------- Cargo.toml | 2 +- lib/codecs/Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 2 +- vdev/Cargo.toml | 2 +- 5 files changed, 27 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65da0c2ca1ccd..4abeb3c653f69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,6 +73,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 = "amq-protocol" version = "7.0.1" @@ -4534,7 +4543,7 @@ dependencies = [ "petgraph", "pico-args", "regex", - "regex-syntax", + "regex-syntax 0.6.29", "string_cache", "term", "tiny-keccak", @@ -4953,7 +4962,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7d24dc2dbae22bff6f1f9326ffce828c9f07ef9cc1e8002e5279f845432a30a" dependencies = [ - "aho-corasick", + "aho-corasick 0.7.20", "crossbeam-epoch", "crossbeam-utils", "hashbrown 0.12.3", @@ -6266,7 +6275,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "rand_xorshift", - "regex-syntax", + "regex-syntax 0.6.29", "rusty-fork", "tempfile", "unarray", @@ -6737,13 +6746,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]] @@ -6752,7 +6761,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]] @@ -6761,6 +6770,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 = "rend" version = "0.4.0" diff --git a/Cargo.toml b/Cargo.toml index 34de723f65910..055dbfc708110 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -297,7 +297,7 @@ rand = { version = "0.8.5", default-features = false, features = ["small_rng"] } rand_distr = { version = "0.4.3", default-features = false } rdkafka = { version = "0.29.0", default-features = false, features = ["tokio", "libz", "ssl", "zstd"], optional = true } redis = { version = "0.23.0", default-features = false, features = ["connection-manager", "tokio-comp", "tokio-native-tls-comp"], optional = true } -regex = { version = "1.7.3", default-features = false, features = ["std", "perf"] } +regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] } roaring = { version = "0.10.1", default-features = false, optional = true } seahash = { version = "4.1.0", default-features = false } semver = { version = "1.0.17", default-features = false, features = ["serde", "std"], optional = true } diff --git a/lib/codecs/Cargo.toml b/lib/codecs/Cargo.toml index 244bc478d256a..34284c827bffc 100644 --- a/lib/codecs/Cargo.toml +++ b/lib/codecs/Cargo.toml @@ -17,7 +17,7 @@ memchr = { version = "2", default-features = false } once_cell = { version = "1.17", default-features = false } ordered-float = { version = "3.6.0", default-features = false } prost = { version = "0.11.8", default-features = false, features = ["std"] } -regex = { version = "1.7.3", default-features = false, features = ["std", "perf"] } +regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false } smallvec = { version = "1", default-features = false, features = ["union"] } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index ea885c39f574c..48d17bb3cba56 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -38,7 +38,7 @@ proptest = { version = "1.1", optional = true } prost-types = { version = "0.11", default-features = false } prost = { version = "0.11", default-features = false, features = ["std"] } quanta = { version = "0.11.0", default-features = false } -regex = { version = "1.7.3", default-features = false, features = ["std", "perf"] } +regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] } ryu = { version = "1", default-features = false } serde = { version = "1.0.159", default-features = false, features = ["derive", "rc"] } serde_json = { version = "1.0.95", default-features = false } diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index e1534b8f52d34..10c5e5f2fe823 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -30,7 +30,7 @@ os_info = { version = "3.7.0", default-features = false } # watch https://github.com/epage/anstyle for official interop with Clap owo-colors = { version = "3.5.0", features = ["supports-colors"] } paste = "1.0.12" -regex = { version = "1.7.1", default-features = false, features = ["std", "perf"] } +regex = { version = "1.8.1", default-features = false, features = ["std", "perf"] } reqwest = { version = "0.11", features = ["json", "blocking"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.95"