diff options
-rw-r--r-- | .github/workflows/style.yml | 2 | ||||
-rw-r--r-- | dhall_proc_macros/src/lib.rs | 2 |
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. //! |