From d6b67346c55cb0dcbaa054dca6fb5c40dc765ff9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 04:13:54 +0000 Subject: [PATCH] Update async-lock requirement from 2.8 to 3.3 Updates the requirements on [async-lock](https://github.com/smol-rs/async-lock) to permit the latest version. - [Release notes](https://github.com/smol-rs/async-lock/releases) - [Changelog](https://github.com/smol-rs/async-lock/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/async-lock/compare/v2.8.0...v3.3.0) --- updated-dependencies: - dependency-name: async-lock dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66f90a73..6aba6f29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3009,7 +3009,7 @@ version = "0.1.0" dependencies = [ "async-broadcast", "async-compatibility-layer", - "async-lock 2.8.0", + "async-lock 3.3.0", "async-std", "async-trait", "clap", diff --git a/Cargo.toml b/Cargo.toml index 954555db..09217339 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ async-broadcast = "0.7.0" async-compatibility-layer = { git = "https://github.com/EspressoSystems/async-compatibility-layer.git", tag = "1.4.1", features = [ "logging-utils", ] } -async-lock = "2.8" +async-lock = "3.3" async-std = { version = "1.9.0", features = ["unstable", "attributes"] } async-trait = "0.1" clap = { version = "4.4", features = ["derive", "env"] }