From 26b181ef53d0d4c2cc1aa91bb04ebf0b3bdd2ba1 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 May 2024 14:53:29 +0000
Subject: [PATCH] build(deps): Bump tokio-util from 0.7.10 to 0.7.11 in /rust
(#4971)
Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.7.10 to
0.7.11.
Commits
cdf9d99
chore: prepare tokio-util v0.7.11 (#6535)
f6eb1ee
time: lazily init timers on first poll (#6512)
b7d4fba
sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
3c8d8e6
chore: fix latest rust-1.78.0 warnings (#6528)
e971a5e
util: use FIFO ordering in WakeList (#6521)
28439e2
time: clean up implementation (#6517)
d33fdd8
time: check for overflow in Interval::poll_tick (#6487)
731dde2
runtime: clarify misleading use of UnsafeCell::with_mut (#6513)
9ed5957
wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)
a73d6bf
macros: #[cfg(not(test))] is no longer necessary for main
macros (#6508)
- Additional commits viewable in compare
view
[](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>
---
rust/Cargo.lock | 5 ++---
rust/gui-client/src-tauri/Cargo.toml | 2 +-
rust/headless-client/Cargo.toml | 2 +-
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 4db6e9606..76e4d4083 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -6535,16 +6535,15 @@ dependencies = [
[[package]]
name = "tokio-util"
-version = "0.7.10"
+version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
+checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
- "tracing",
]
[[package]]
diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml
index 3ab121bd5..2c9ab0c95 100644
--- a/rust/gui-client/src-tauri/Cargo.toml
+++ b/rust/gui-client/src-tauri/Cargo.toml
@@ -55,7 +55,7 @@ zip = { version = "0.6.6", features = ["deflate", "time"], default-features = fa
[target.'cfg(target_os = "linux")'.dependencies]
dirs = "5.0.1"
nix = { version = "0.28.0", features = ["user"] }
-tokio-util = { version = "0.7.10", features = ["codec"] }
+tokio-util = { version = "0.7.11", features = ["codec"] }
[target.'cfg(target_os = "macos")'.dependencies]
diff --git a/rust/headless-client/Cargo.toml b/rust/headless-client/Cargo.toml
index c3ca3a7c9..fabecfff1 100644
--- a/rust/headless-client/Cargo.toml
+++ b/rust/headless-client/Cargo.toml
@@ -30,7 +30,7 @@ futures = "0.3.30"
nix = { version = "0.28.0", features = ["fs", "user"] }
resolv-conf = "0.7.0"
sd-notify = "0.4.1" # This is a pure Rust re-implementation, so it isn't vulnerable to CVE-2024-3094
-tokio-util = { version = "0.7.10", features = ["codec"] }
+tokio-util = { version = "0.7.11", features = ["codec"] }
[target.'cfg(target_os = "macos")'.dependencies]
dirs = "5.0.1"