From d29ce03f26b1d16b3b32b514d270ec30f67d5cce Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 01:57:09 +0000 Subject: [PATCH] Update Rust crate regex to 1.10.4 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d4ada6..62fdc7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1108,9 +1108,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 194e9fa..941b01d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ async-recursion = "1.1.0" actix-web = "4.5.1" lazy_static = "1.4.0" redis = { version = "0.25.2", default-features = false, features = ["tokio-comp", "connection-manager"] } -regex = "1.10.3" +regex = "1.10.4" reqwest = { version = "0.12.1", default-features = false, features = ["rustls-tls", "gzip", "json", "socks"] } serde = {version = "1.0.197", default-features = false, features = ["derive"]} serde_json = "1.0.114"