From 94a4c7b7148bc36e4ca88774d3c7fe73f91e6f14 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Wed, 24 Jul 2024 10:56:51 +0900 Subject: [PATCH] cargo: bump tokio to 1.39.1 as previous version is yanked MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ``` error[yanked]: detected yanked crate (try `cargo update -p tokio`) ┌─ /github/workspace/Cargo.lock:316:1 │ 316 │ tokio 1.39.0 registry+https://github.com/rust-lang/crates.io-index │ ------------------------------------------------------------------ yanked version ``` --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3dc48742b5..0c98a43b59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3264,9 +3264,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.0" +version = "1.39.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c3318c4fc7126c339a40fbc025927d0328ca32259f68bfe4321660644c1f626" +checksum = "d040ac2b29ab03b09d4129c2f5bbd012a3ac2f79d38ff506a4bf8dd34b0eac8a" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 8ccd8a72b8..3f2613a837 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,7 +98,7 @@ test-case = "3.3.1" textwrap = "0.16.1" thiserror = "1.0.63" timeago = { version = "0.4.2", default-features = false } -tokio = { version = "1.39.0" } +tokio = { version = "1.39.1" } toml_edit = { version = "0.19.15", features = ["serde"] } tracing = "0.1.40" tracing-chrome = "0.7.2"