From 3a94aeed09d8a98d4663c4ed3e7545c7798d5b9c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Fri, 3 Feb 2023 20:05:43 -0500 Subject: [PATCH] require safe tokio version range see https://rustsec.org/advisories/RUSTSEC-2023-0005 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 788327c..d91b61e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ serde_urlencoded = "0.7" slog = "2" slog-async = "2" slog-term = "2" -tokio = { version = "1.24", features = ["rt-multi-thread", "macros", "sync", "time"] } +tokio = { version = "1.24.2", features = ["rt-multi-thread", "macros", "sync", "time"] } toml = "0.7" [build-dependencies]