From a03079d95a5d53b00c1a17d1c420d0e40f96db0d Mon Sep 17 00:00:00 2001
From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com>
Date: Fri, 9 Apr 2021 01:09:30 +0200
Subject: [PATCH] Don't treat Clippy warnings as errors

Due to https://github.com/rust-lang/rust/issues/45127.
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d955339..80c4c41 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,6 +24,6 @@ jobs:
     - if: matrix.rust == 'stable'
       run: rustup component add clippy
     - if: matrix.rust == 'stable'
-      run: cargo clippy -- -D warnings
+      run: cargo clippy
     - run: cargo build --verbose --locked
     - run: cargo test --verbose