From 1240620bf1887bd21e8106f36bbf972449b225d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 13:17:30 +0000 Subject: [PATCH 1/2] build(deps): bump backon from 0.4.4 to 0.5.0 Bumps [backon](https://github.com/Xuanwo/backon) from 0.4.4 to 0.5.0. - [Release notes](https://github.com/Xuanwo/backon/releases) - [Commits](https://github.com/Xuanwo/backon/compare/v0.4.4...v0.5.0) --- updated-dependencies: - dependency-name: backon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 ++----- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8485709..51461f3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -375,14 +375,11 @@ dependencies = [ [[package]] name = "backon" -version = "0.4.4" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" +checksum = "33e5b65cc81d81fbb8488f36458ab4771be35a722967bbc959df28b47397e3ff" dependencies = [ "fastrand", - "futures-core", - "pin-project", - "tokio", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a240d1c3..952e5378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ tempfile = "3.12.0" tower = { version = "0.5", features = ["util"] } http-body-util = "0.1.1" testcontainers = { version = "0.21", features = ["watchdog"] } -backon = "0.4.4" +backon = "0.5.0" [target.'cfg(target_os = "linux")'.dev-dependencies] rcgen = { version = "0.13", features = ["crypto"] } From dd0322e030cef4ca59262fade60e85169729e193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Thu, 22 Aug 2024 16:31:17 +0200 Subject: [PATCH 2/2] deps: Reenable tokio for sleep feature of backon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Needed with backon 0.5.0. Signed-off-by: VĂ­ctor Cuadrado Juan --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 51461f3c..a74185aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -380,6 +380,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33e5b65cc81d81fbb8488f36458ab4771be35a722967bbc959df28b47397e3ff" dependencies = [ "fastrand", + "tokio", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 952e5378..d8e3721b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ tempfile = "3.12.0" tower = { version = "0.5", features = ["util"] } http-body-util = "0.1.1" testcontainers = { version = "0.21", features = ["watchdog"] } -backon = "0.5.0" +backon = { version = "0.5.0", features = ["tokio-sleep"] } [target.'cfg(target_os = "linux")'.dev-dependencies] rcgen = { version = "0.13", features = ["crypto"] }