From d160f17bce33e089fafe0aeab003e9bf6e6c8165 Mon Sep 17 00:00:00 2001 From: Andrew Plaza Date: Thu, 29 Aug 2024 15:59:41 -0400 Subject: [PATCH] add clippy(unwrap_used) to http-api --- xmtp_api_http/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 xmtp_api_http/src/lib.rs diff --git a/xmtp_api_http/src/lib.rs b/xmtp_api_http/src/lib.rs old mode 100644 new mode 100755 index 5d9c276ff..aa6fca4b4 --- a/xmtp_api_http/src/lib.rs +++ b/xmtp_api_http/src/lib.rs @@ -1,3 +1,5 @@ +#![warn(clippy::unwrap_used)] + pub mod constants; mod util;