From 615141e8fba617f5c1422ac7cf913da270b0e2b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:55:24 +0000 Subject: [PATCH] chore(deps): bump regex from 1.10.6 to 1.11.0 Bumps [regex](https://github.com/rust-lang/regex) from 1.10.6 to 1.11.0. - [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.10.6...1.11.0) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++------------ crates/bench_runner/Cargo.toml | 2 +- crates/datafusion_ext/Cargo.toml | 2 +- crates/datasources/Cargo.toml | 2 +- crates/decimal/Cargo.toml | 2 +- crates/slt/Cargo.toml | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 568ca5b93..bec5ea6b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -475,7 +475,7 @@ dependencies = [ "arrow-select", "num", "regex", - "regex-syntax 0.8.3", + "regex-syntax 0.8.5", ] [[package]] @@ -1718,7 +1718,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" dependencies = [ "memchr", - "regex-automata 0.4.6", + "regex-automata 0.4.8", "serde", ] @@ -2767,7 +2767,7 @@ dependencies = [ "hashbrown 0.14.3", "itertools 0.12.1", "log", - "regex-syntax 0.8.3", + "regex-syntax 0.8.5", ] [[package]] @@ -7103,14 +7103,14 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.6" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.6", - "regex-syntax 0.8.3", + "regex-automata 0.4.8", + "regex-syntax 0.8.5", ] [[package]] @@ -7124,13 +7124,13 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.6" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.3", + "regex-syntax 0.8.5", ] [[package]] @@ -7147,9 +7147,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.3" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "regress" diff --git a/crates/bench_runner/Cargo.toml b/crates/bench_runner/Cargo.toml index b342b2b9f..718447d73 100644 --- a/crates/bench_runner/Cargo.toml +++ b/crates/bench_runner/Cargo.toml @@ -21,4 +21,4 @@ tokio = { workspace = true } tracing = { workspace = true } tokio-postgres = "0.7.12" glob = "0.3.1" -regex = "1.10.6" +regex = "1.11.0" diff --git a/crates/datafusion_ext/Cargo.toml b/crates/datafusion_ext/Cargo.toml index 00e5db369..17dd148e4 100644 --- a/crates/datafusion_ext/Cargo.toml +++ b/crates/datafusion_ext/Cargo.toml @@ -28,7 +28,7 @@ thiserror.workspace = true futures = { workspace = true } uuid = { version = "1.10.0", features = ["v4", "fast-rng", "macro-diagnostics"] } async-recursion = "1.1.1" -regex = "1.10" +regex = "1.11" once_cell = "1.19.0" parking_lot = "0.12.3" bson = "2.13.0" diff --git a/crates/datasources/Cargo.toml b/crates/datasources/Cargo.toml index eb5d4719d..b6cf270f3 100644 --- a/crates/datasources/Cargo.toml +++ b/crates/datasources/Cargo.toml @@ -50,7 +50,7 @@ indexmap = "2.5.0" once_cell = "1.19.0" parking_lot = "0.12.3" rand = "0.8.5" -regex = "1.10.6" +regex = "1.11.0" ring = "0.17.8" scylla = "0.14.0" serde_with = "3.9.0" diff --git a/crates/decimal/Cargo.toml b/crates/decimal/Cargo.toml index b3f4234d8..b4587c8fe 100644 --- a/crates/decimal/Cargo.toml +++ b/crates/decimal/Cargo.toml @@ -13,4 +13,4 @@ doctest = false [dependencies] thiserror.workspace = true num-traits = "0.2.19" -regex = "1.10.6" +regex = "1.11.0" diff --git a/crates/slt/Cargo.toml b/crates/slt/Cargo.toml index cf21423ff..2ce9270bf 100644 --- a/crates/slt/Cargo.toml +++ b/crates/slt/Cargo.toml @@ -35,7 +35,7 @@ telemetry = { path = "../telemetry" } uuid = { version = "1.10", features = ["v4", "fast-rng", "macro-diagnostics"] } glob = "0.3.1" once_cell = "1.19.0" -regex = "1.10.6" +regex = "1.11.0" sqllogictest = "0.22.0" tokio-postgres = "0.7.12" walkdir = "2.5.0"