Skip to content

Commit

Permalink
Drop MSRV down to 1.56 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
GnomedDev authored Apr 1, 2024
1 parent 7beabcb commit d84fd91
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 @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
rust: ["beta", "stable"]
rust: ["1.56", "beta", "stable"]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl Display for StrSimError {
StrSimError::DifferentLengthArgs => "Differing length arguments provided",
};

write!(fmt, "{text}")
write!(fmt, "{}", text)
}
}

Expand Down

0 comments on commit d84fd91

Please sign in to comment.