From 6f0f6fce97feaf70bc00987bde8881e068bff915 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 08:31:05 +0000 Subject: [PATCH] chore: Bump tokio from 1.39.2 to 1.39.3 (#324) Bumps tokio from 1.39.2 to 1.39.3. Release notes Sourced from tokio's releases. Tokio v1.39.3 1.39.3 (August 17th, 2024) This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#6772) #6772: tokio-rs/tokio#6772 Commits 3d439ab chore: prepare Tokio v1.39.3 (#6782) b2ea40b net: add handling for abstract socket name (#6772) See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) --- Cargo.lock | 4 ++-- fatigue/Cargo.toml | 2 +- libfatigue/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8507edc..db4f9d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2366,9 +2366,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 32f1bcd..24888cf 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -23,4 +23,4 @@ prettytable-rs = "0.10.0" serde = "1.0.208" serde_json = "1.0.125" thiserror = "1.0.63" -tokio = { version = "1.39.2", features = ["full"] } +tokio = { version = "1.39.3", features = ["full"] } diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 392b28e..90c2b32 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -25,5 +25,5 @@ serde = { version = "1.0.208", features = ["derive"] } serde_json = "1.0.125" serde_yaml = "0.9.34" thiserror = "1.0.63" -tokio = { version = "1.39.2", features = ["full"] } +tokio = { version = "1.39.3", features = ["full"] } url = "2.5.2"