summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-02-10 18:14:48 +0000
committerGitHub <noreply@github.com>2023-02-10 18:14:48 +0000
commit2672f78dda0bc98c9fac8d63bd1e00bafbb76ef4 (patch)
tree1300abbd14272a5f2f8df2e4622684c968d65f17 /Cargo.lock
parentedda1b741a4a0816eb6e62eafd69fc9896603cf5 (diff)
make update_needed check lazy (#706)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock13
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f6f768a39..eec9bef82 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -89,6 +89,7 @@ dependencies = [
"env_logger",
"eyre",
"fs-err",
+ "futures-util",
"indicatif",
"interim",
"itertools",
@@ -738,6 +739,17 @@ dependencies = [
]
[[package]]
+name = "futures-macro"
+version = "0.3.24"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "futures-sink"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -756,6 +768,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
dependencies = [
"futures-core",
+ "futures-macro",
"futures-sink",
"futures-task",
"pin-project-lite",