From 29fd482619d85269ebd5740a3ef90bb0f528cc74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:12:04 +0000 Subject: [PATCH] Bump tokio from 1.43.0 to 1.43.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.43.0 to 1.43.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.43.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.43.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- tracker/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 635038e..9cff979 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1541,9 +1541,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.0" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b8a9e5a..7fd6cdf 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" clap = { version = "4.1.4", default-features = false, features = ["help", "usage", "wrap_help", "derive", "std", "color", "error-context"] } color-eyre = "0.6.2" leech_core = { path = "../core" } -tokio = { version = "1.24.2", features = ["macros", "parking_lot"] } +tokio = { version = "1.43.1", features = ["macros", "parking_lot"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter", "parking_lot", "tracing-log"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 0de327f..65a3e31 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.25" nom = "7.1.3" rand = "0.8.5" thiserror = "1.0.38" -tokio = { version = "1.24.2", features = ["io-std", "io-util", "fs", "net", "rt-multi-thread", "parking_lot"] } +tokio = { version = "1.43.1", features = ["io-std", "io-util", "fs", "net", "rt-multi-thread", "parking_lot"] } tokio-stream = "0.1.11" tokio-util = { version = "0.7.4", features = ["codec"] } tracker = { path = "../tracker" } diff --git a/tracker/Cargo.toml b/tracker/Cargo.toml index 62e292a..57c5bff 100644 --- a/tracker/Cargo.toml +++ b/tracker/Cargo.toml @@ -10,7 +10,7 @@ hyper = { version = "0.14.23", default-features = false, features = ["client", " hyper-tls = "0.5.0" nom = "7.1.3" rand = "0.8.5" -tokio = { version = "1.24.2", features = ["io-std", "io-util", "fs", "net", "rt-multi-thread", "parking_lot", "macros"] } +tokio = { version = "1.43.1", features = ["io-std", "io-util", "fs", "net", "rt-multi-thread", "parking_lot", "macros"] } tokio-tungstenite = "0.18.0" url = "2.3.1"