From e048da6f7358257b4de73b368f6ce0a988d210de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jun 2024 23:46:06 +0000 Subject: [PATCH] build: Bump blocking from 1.5.1 to 1.6.1 Bumps [blocking](https://github.com/smol-rs/blocking) from 1.5.1 to 1.6.1. - [Release notes](https://github.com/smol-rs/blocking/releases) - [Changelog](https://github.com/smol-rs/blocking/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/blocking/compare/v1.5.1...v1.6.1) --- updated-dependencies: - dependency-name: blocking dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 ++----- vmm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25de92b7a..9aa31bef9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -349,18 +349,15 @@ dependencies = [ [[package]] name = "blocking" -version = "1.5.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" dependencies = [ "async-channel", - "async-lock", "async-task", - "fastrand", "futures-io", "futures-lite", "piper", - "tracing", ] [[package]] diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index bf820a09f..46b28162c 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -24,7 +24,7 @@ arc-swap = "1.7.1" arch = { path = "../arch" } bitflags = "2.5.0" block = { path = "../block" } -blocking = { version = "1.5.1", optional = true } +blocking = { version = "1.6.1", optional = true } cfg-if = "1.0.0" clap = "4.5.4" devices = { path = "../devices" }