From ccefa21215118a4a0512f18c8092627d534bb6e7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:04:29 +0000 Subject: [PATCH] fix(deps): update rust crate regex to 1.11.1 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6c9e765..c67b178 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1525,9 +1525,9 @@ checksum = "09c30c54dffee5b40af088d5d50aa3455c91a0127164b51f0215efc4cb28fb3c" [[package]] name = "regex" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index b65ad49..df8e872 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ diesel_migrations = "2.2.0" lazy_static = "1.5.0" num_cpus = "1.16.0" once_cell = "1.20.2" -regex = "1.11.0" +regex = "1.11.1" reqwest = {version = "0.12.8", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false} rocket = {git = "https://github.com/SergioBenitez/Rocket"} rocket_sync_db_pools = {git = "https://github.com/SergioBenitez/Rocket", features = ["diesel_postgres_pool"]}