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 ee3efc8 commit f417b88Copy full SHA for f417b88
bindgen/features.rs
@@ -38,8 +38,10 @@ impl RustTarget {
38
// fixes.
39
minor >= other_minor
40
}
41
- (_, Version::Nightly) => false,
+ // Nightly is compatible with everything
42
(Version::Nightly, _) => true,
43
+ // No stable release is compatible with nightly
44
+ (Version::Stable { .. }, Version::Nightly) => false,
45
46
47
0 commit comments