From fc7645e7bf44cb2fcf3d8c7b791eba343b6b087b Mon Sep 17 00:00:00 2001 From: Age Manning Date: Tue, 14 Mar 2023 13:43:52 +1100 Subject: [PATCH] Fix logging tests via tokio upgrade --- common/logging/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/logging/Cargo.toml b/common/logging/Cargo.toml index 6d4b8665576..b6179d9e782 100644 --- a/common/logging/Cargo.toml +++ b/common/logging/Cargo.toml @@ -10,7 +10,7 @@ test_logger = [] # Print log output to stderr when running tests instead of drop [dependencies] slog = "2.5.2" slog-term = "2.6.0" -tokio = "1.14.0" +tokio = { version = "1.26.0", features = ["sync"] } lighthouse_metrics = { path = "../lighthouse_metrics" } lazy_static = "1.4.0" sloggers = { version = "2.1.1", features = ["json"] }