Skip to content

Commit

Permalink
Fix MSRV-related issues
Browse files Browse the repository at this point in the history
Fixing the MSRV in our CI involves making sure that the crate can build
under that version of the Rust compiler, given some choice of
dependencies that are also compatible with the MSRV. A major issue is
that many crates bump the MSRV in patch or minor releases that then get
picked up automatically if no lock file is present.

This commit adds a lock file for our current MSRV, and pins the MSRV for
clippy as well.

Signed-off-by: Ionut Mihalcea <[email protected]>
  • Loading branch information
ionut-arm committed Sep 13, 2023
1 parent 6fccc4d commit 5702116
Show file tree
Hide file tree
Showing 4 changed files with 840 additions and 1 deletion.
1 change: 1 addition & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msrv = "1.30.0"
Loading

0 comments on commit 5702116

Please sign in to comment.