Skip to content

Commit

Permalink
Upgrade required Rust version to 1.67. (#221)
Browse files Browse the repository at this point in the history
This commit upgrades the minimum required Rust version to 1.67
and applies a Clippy-suggested fix.
  • Loading branch information
WhyNotHugo authored Aug 23, 2023
1 parent 81e09de commit 642331f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [1.65.0, stable, beta, nightly]
rust: [1.67.0, stable, beta, nightly]
steps:
- name: Checkout repository
uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
#![allow(clippy::uninlined_format_args)]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(any(feature = "std"))]
#[cfg(feature = "std")]
#[allow(unused_imports)] // Import macros even if unused.
#[macro_use]
extern crate std;
Expand Down

0 comments on commit 642331f

Please sign in to comment.