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 869cd65 commit 1945b0dCopy full SHA for 1945b0d
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