From 194ea3575723ee18cebf8659bf48c5a153e0cd45 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 25 Jan 2022 08:40:56 -0500 Subject: [PATCH] webhook-listen: bump minimum requirements This updates `thread_local` to address an internal data race. Fixes: RUSTSEC-2022-0006 --- webhook-listen/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webhook-listen/Cargo.toml b/webhook-listen/Cargo.toml index 05c3b25..5dee552 100644 --- a/webhook-listen/Cargo.toml +++ b/webhook-listen/Cargo.toml @@ -29,5 +29,9 @@ thiserror = "^1.0" tokio = { version = "^1.8.4", features = ["rt", "rt-multi-thread"] } webhook-router = { version = "~0.2", path = "../webhook-router" } +# Security updates (bumps minimums) +thread_local = "^1.1.4" +regex = "^1.3.3" + [[bin]] name = "webhook-listen" -- GitLab