From c4fdbf7aba9b6925b941816e84f4459746cbeb89 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 1 Nov 2020 12:49:11 +0100 Subject: [PATCH] make sync part of lib expect safe --- asyncgit/src/sync/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/asyncgit/src/sync/mod.rs b/asyncgit/src/sync/mod.rs index f9baea63..653248c8 100644 --- a/asyncgit/src/sync/mod.rs +++ b/asyncgit/src/sync/mod.rs @@ -1,5 +1,8 @@ //! sync git api +//TODO: remove once we have this activated on the toplevel +#![deny(clippy::expect_used)] + mod branch; mod commit; mod commit_details;