summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-07-21 09:35:51 +0000
committerMatthias Beyer <matthias.beyer@ifm.com>2022-07-21 13:46:15 +0200
commit18b4da386af427c9d02d5b83c30932fb02aa5e57 (patch)
tree89bb80c90bf253b1263ed4d70655b45d952a5e0a
parentf94d022918b11837993506d67548062c0db82ce5 (diff)
Bump backoff from 0.3.0 to 0.4.0
Bumps [backoff](https://github.com/ihrwein/backoff) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/ihrwein/backoff/releases) - [Commits](https://github.com/ihrwein/backoff/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: backoff dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock6
-rw-r--r--crates/common/download/Cargo.toml2
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 639c5efd..55345d60 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -236,14 +236,14 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backoff"
-version = "0.3.0"
+version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fe17f59a06fe8b87a6fc8bf53bb70b3aba76d7685f432487a68cd5552853625"
+checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
dependencies = [
"futures-core",
"getrandom",
"instant",
- "pin-project",
+ "pin-project-lite",
"rand",
"tokio",
]
diff --git a/crates/common/download/Cargo.toml b/crates/common/download/Cargo.toml
index 0c9b0f41..5f92636b 100644
--- a/crates/common/download/Cargo.toml
+++ b/crates/common/download/Cargo.toml
@@ -8,7 +8,7 @@ license = "Apache-2.0"
description = "download_manager"
[dependencies]
-backoff = { version = "0.3", features = ["tokio"] }
+backoff = { version = "0.4", features = ["tokio"] }
log = "0.4"
nix = "0.23"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }