We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fabdf commit 67145fcCopy full SHA for 67145fc
dev/msrvcheck/src/main.rs
@@ -56,7 +56,7 @@ fn main() -> CargoResult<()> {
56
57
for (package, version) in packages_with_rust_version {
58
if let Some(v) = version {
59
- if !v.is_compatible_with(project_msrv.as_partial()) {
+ if !project_msrv.is_compatible_with(v.as_partial()) {
60
panic!(
61
"package '{package}' has MSRV {v} not compatible with current project MSRV {project_msrv}",
62
);
0 commit comments