summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2021-04-03 15:39:30 +0100
committerNadrieril2021-04-03 15:39:30 +0100
commit28028c32aff193d9acb776d187197f3fc7c61be6 (patch)
treed3d3139e2d3c6f59a9ffcd45e7944def3bd9b6d5
parent1d8f7ee9ad37bd61bc4e1648196b45b5d10b8c47 (diff)
ci: more clippy fixes
-rw-r--r--.github/workflows/style.yml2
-rw-r--r--dhall_proc_macros/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index 628c1d7..82ce5d1 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -38,7 +38,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
- toolchain: 1.44.0 # Minimum supported version
+ toolchain: 1.50.0
components: clippy
override: true
- name: Run clippy
diff --git a/dhall_proc_macros/src/lib.rs b/dhall_proc_macros/src/lib.rs
index b53bd47..91595cd 100644
--- a/dhall_proc_macros/src/lib.rs
+++ b/dhall_proc_macros/src/lib.rs
@@ -1,5 +1,5 @@
#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.5.0")]
-#![allow(clippy::unnecessary_wrap)]
+#![allow(clippy::unnecessary_wraps)]
//! This crate contains the code-generation primitives for the [dhall-rust][dhall-rust] crate.
//! This is highly unstable and breaks regularly; use at your own risk.
//!