From 35fc5040ebb0f166225ab216be22d3d0fa3c7394 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:38:13 +0000 Subject: [PATCH] fix(deps): update rust crate tokio to 1.36.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 574661b..ebb3822 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -883,9 +883,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.34.0" +version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" +checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 62e667e..a44c00f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,5 +14,5 @@ rayon = "1.8.1" reqwest = { version = "0.11.23", features = ["blocking", "json", "rustls-tls"], default-features = false } serde = { version = "1.0.193", features = ["derive"] } sha1_smol = { version = "1.0.0", features = ["std", "serde"] } -tokio = { version = "1.34.0", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] } url = { version = "2.5.0", features = ["serde"] }