We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54a9dc commit cf7bb3cCopy full SHA for cf7bb3c
src/features.rs
@@ -96,6 +96,8 @@ macro_rules! rust_target_base {
96
=> Stable_1_21 => 1.21;
97
/// Rust stable 1.25
98
=> Stable_1_25 => 1.25;
99
+ /// Rust stable 1.26
100
+ => Stable_1_26 => 1.26;
101
/// Nightly rust
102
=> Nightly => nightly;
103
);
@@ -172,6 +174,10 @@ rust_feature_def!(
172
174
/// repr(align) ([PR](https://github.com/rust-lang/rust/pull/47006))
173
175
=> repr_align;
176
}
177
+ Stable_1_26 {
178
+ /// [i128 / u128 support](https://doc.rust-lang.org/std/primitive.i128.html)
179
+ => i128_and_u128;
180
+ }
181
Nightly {
182
/// `thiscall` calling convention ([Tracking issue](https://github.com/rust-lang/rust/issues/42202))
183
=> thiscall_abi;
0 commit comments