From 2050a3bea20b1f2484ff8affb8d86e914dd32b69 Mon Sep 17 00:00:00 2001 From: Tony <68118705+Legend-Master@users.noreply.github.com> Date: Mon, 16 Sep 2024 10:20:52 +0800 Subject: [PATCH] fix(upload): change tokio version to 1 instead of * (#1793) --- plugins/upload/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index c43487a9..64da6a03 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -38,4 +38,4 @@ rustls-tls = ["reqwest/rustls-tls"] [dev-dependencies] mockito = "1.5.0" -tokio = { version = "*", features = ["macros"] } +tokio = { version = "1", features = ["macros"] }