summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"] }