Skip to content

Commit

Permalink
Fix msrv_lints version (#106)
Browse files Browse the repository at this point in the history
Before and since have to use the same version, right now 1.57 is excluded so it
cannot find msrv_lints().

Fixes #105

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
  • Loading branch information
Luap99 committed Jan 26, 2022
1 parent 1a5ac81 commit 971622e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fn stable_lints() {
#[rustversion::not(stable)]
fn stable_lints() {}

#[rustversion::before(1.57)]
#[rustversion::before(1.58)]
fn msrv_lints() {}

#[rustversion::since(1.58)]
Expand Down

0 comments on commit 971622e

Please sign in to comment.