From ba8e178a06b0ed4865aea10853753aade3d41847 Mon Sep 17 00:00:00 2001 From: Caleb Cartwright Date: Sat, 6 Feb 2021 12:50:42 -0600 Subject: [PATCH] increase publish wait time --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 20c8d3b..fabae10 100644 --- a/src/main.rs +++ b/src/main.rs @@ -56,7 +56,7 @@ fn main() { publish(p, &commit, &version_to_publish); // Give the crates time to make their way into the index - thread::sleep(Duration::from_secs(20)); + thread::sleep(Duration::from_secs(45)); } }