From 0dd93fcfe6eea15a64ee19e6f22ed4dadeb77094 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 04:45:09 +0000 Subject: [PATCH] build(deps): Bump tokio from 1.40.0 to 1.41.0 in /rust (#7169) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.40.0 to 1.41.0.
Release notes

Sourced from tokio's releases.

Tokio v1.41.0

1.41.0 (Oct 22th, 2024)

Added

Added (unstable)

Changed

Fixed

Documented

#6793: tokio-rs/tokio#6793 #6808: tokio-rs/tokio#6808 #6810: tokio-rs/tokio#6810 #6814: tokio-rs/tokio#6814 #6821: tokio-rs/tokio#6821 #6822: tokio-rs/tokio#6822 #6826: tokio-rs/tokio#6826 #6828: tokio-rs/tokio#6828 #6833: tokio-rs/tokio#6833 #6836: tokio-rs/tokio#6836 #6838: tokio-rs/tokio#6838 #6840: tokio-rs/tokio#6840

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.40.0&new-version=1.41.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) ---
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)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Eizinger --- rust/Cargo.lock | 4 ++-- rust/Cargo.toml | 2 +- rust/socket-factory/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 23949a156..6c4dc0462 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -6811,9 +6811,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.40.0" +version = "1.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" dependencies = [ "backtrace", "bytes", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a3757d35b..4507b5c15 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -41,7 +41,7 @@ domain = { version = "0.10", features = ["serde"] } dns-lookup = "2.0" tokio-tungstenite = "0.23.1" rtnetlink = { version = "0.14.1", default-features = false, features = ["tokio_socket"] } -tokio = "1.39" +tokio = "1.41" rustls = { version = "0.23.10", default-features = false, features = ["ring"] } connlib-client-android = { path = "connlib/clients/android" } diff --git a/rust/socket-factory/Cargo.toml b/rust/socket-factory/Cargo.toml index e0f4c1032..30540efd5 100644 --- a/rust/socket-factory/Cargo.toml +++ b/rust/socket-factory/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" firezone-logging = { workspace = true } quinn-udp = "0.5.2" socket2 = { workspace = true } -tokio = { version = "1.39", features = ["net"] } +tokio = { version = "1.41", features = ["net"] } tracing = "0.1"