From 8b284c24a14bc48718dcc2695ae01af9107d0710 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:46:07 +0000 Subject: [PATCH] Bump exponential-backoff from 1.2.0 to 2.0.0 Bumps [exponential-backoff](https://github.com/yoshuawuyts/exponential-backoff) from 1.2.0 to 2.0.0. - [Release notes](https://github.com/yoshuawuyts/exponential-backoff/releases) - [Commits](https://github.com/yoshuawuyts/exponential-backoff/compare/v1.2.0...v2.0.0) --- updated-dependencies: - dependency-name: exponential-backoff dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 +++--------------------------------------- shared-test/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbe28fca..07a0d651 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,11 +289,11 @@ dependencies = [ [[package]] name = "exponential-backoff" -version = "1.2.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47f78d87d930eee4b5686a2ab032de499c72bd1e954b84262bb03492a0f932cd" +checksum = "6ffb309d235a642598183aeda8925e871e85dd5a433c2c877e69ff0a960f4c02" dependencies = [ - "rand", + "fastrand", ] [[package]] @@ -698,12 +698,6 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" -[[package]] -name = "ppv-lite86" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" - [[package]] name = "proc-macro2" version = "1.0.86" @@ -722,36 +716,6 @@ dependencies = [ "proc-macro2", ] -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha", - "rand_core", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] - [[package]] name = "redox_syscall" version = "0.4.1" diff --git a/shared-test/Cargo.toml b/shared-test/Cargo.toml index 182bb1aa..05103229 100644 --- a/shared-test/Cargo.toml +++ b/shared-test/Cargo.toml @@ -7,6 +7,6 @@ edition.workspace = true workspace = true [dependencies] -exponential-backoff = "1" +exponential-backoff = "2" libcnb-test = "=0.22.0" ureq = { version = "2", default-features = false, features = ["tls"] }