@@ -331,7 +331,7 @@ declare_features! (
331
331
( unstable, hexagon_target_feature, "1.27.0" , Some ( 44839 ) ) ,
332
332
( unstable, lahfsahf_target_feature, "1.78.0" , Some ( 44839 ) ) ,
333
333
( unstable, loongarch_target_feature, "1.73.0" , Some ( 44839 ) ) ,
334
- ( unstable, m68k_target_feature, "CURRENT_RUSTC_VERSION " , Some ( 134328 ) ) ,
334
+ ( unstable, m68k_target_feature, "1.85.0 " , Some ( 134328 ) ) ,
335
335
( unstable, mips_target_feature, "1.27.0" , Some ( 44839 ) ) ,
336
336
( unstable, powerpc_target_feature, "1.27.0" , Some ( 44839 ) ) ,
337
337
( unstable, prfchw_target_feature, "1.78.0" , Some ( 44839 ) ) ,
@@ -342,7 +342,7 @@ declare_features! (
342
342
( unstable, sse4a_target_feature, "1.27.0" , Some ( 44839 ) ) ,
343
343
( unstable, tbm_target_feature, "1.27.0" , Some ( 44839 ) ) ,
344
344
( unstable, wasm_target_feature, "1.30.0" , Some ( 44839 ) ) ,
345
- ( unstable, x87_target_feature, "CURRENT_RUSTC_VERSION " , Some ( 44839 ) ) ,
345
+ ( unstable, x87_target_feature, "1.85.0 " , Some ( 44839 ) ) ,
346
346
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
347
347
// Features are listed in alphabetical order. Tidy will fail if you don't keep it this way.
348
348
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
@@ -378,25 +378,25 @@ declare_features! (
378
378
/// Enables experimental inline assembly support for additional architectures.
379
379
( unstable, asm_experimental_arch, "1.58.0" , Some ( 93335 ) ) ,
380
380
/// Enables experimental register support in inline assembly.
381
- ( unstable, asm_experimental_reg, "CURRENT_RUSTC_VERSION " , Some ( 133416 ) ) ,
381
+ ( unstable, asm_experimental_reg, "1.85.0 " , Some ( 133416 ) ) ,
382
382
/// Allows using `label` operands in inline assembly.
383
383
( unstable, asm_goto, "1.78.0" , Some ( 119364 ) ) ,
384
384
/// Allows using `label` operands in inline assembly together with output operands.
385
- ( unstable, asm_goto_with_outputs, "CURRENT_RUSTC_VERSION " , Some ( 119364 ) ) ,
385
+ ( unstable, asm_goto_with_outputs, "1.85.0 " , Some ( 119364 ) ) ,
386
386
/// Allows the `may_unwind` option in inline assembly.
387
387
( unstable, asm_unwind, "1.58.0" , Some ( 93334 ) ) ,
388
388
/// Allows users to enforce equality of associated constants `TraitImpl<AssocConst=3>`.
389
389
( unstable, associated_const_equality, "1.58.0" , Some ( 92827 ) ) ,
390
390
/// Allows associated type defaults.
391
391
( unstable, associated_type_defaults, "1.2.0" , Some ( 29661 ) ) ,
392
392
/// Allows async functions to be called from `dyn Trait`.
393
- ( incomplete, async_fn_in_dyn_trait, "CURRENT_RUSTC_VERSION " , Some ( 133119 ) ) ,
393
+ ( incomplete, async_fn_in_dyn_trait, "1.85.0 " , Some ( 133119 ) ) ,
394
394
/// Allows `#[track_caller]` on async functions.
395
395
( unstable, async_fn_track_caller, "1.73.0" , Some ( 110011 ) ) ,
396
396
/// Allows `for await` loops.
397
397
( unstable, async_for_loop, "1.77.0" , Some ( 118898 ) ) ,
398
398
/// Allows `async` trait bound modifier.
399
- ( unstable, async_trait_bounds, "CURRENT_RUSTC_VERSION " , Some ( 62290 ) ) ,
399
+ ( unstable, async_trait_bounds, "1.85.0 " , Some ( 62290 ) ) ,
400
400
/// Allows using C-variadics.
401
401
( unstable, c_variadic, "1.34.0" , Some ( 44930 ) ) ,
402
402
/// Allows the use of `#[cfg(<true/false>)]`.
@@ -434,7 +434,7 @@ declare_features! (
434
434
/// Allows `const || {}` closures in const contexts.
435
435
( incomplete, const_closures, "1.68.0" , Some ( 106003 ) ) ,
436
436
/// Allows using `~const Destruct` bounds and calling drop impls in const contexts.
437
- ( unstable, const_destruct, "CURRENT_RUSTC_VERSION " , Some ( 133214 ) ) ,
437
+ ( unstable, const_destruct, "1.85.0 " , Some ( 133214 ) ) ,
438
438
/// Allows `for _ in _` loops in const contexts.
439
439
( unstable, const_for, "1.56.0" , Some ( 87575 ) ) ,
440
440
/// Be more precise when looking for live drops in a const context.
@@ -458,7 +458,7 @@ declare_features! (
458
458
( unstable, decl_macro, "1.17.0" , Some ( 39412 ) ) ,
459
459
/// Allows the use of default values on struct definitions and the construction of struct
460
460
/// literals with the functional update syntax without a base.
461
- ( unstable, default_field_values, "CURRENT_RUSTC_VERSION " , Some ( 132162 ) ) ,
461
+ ( unstable, default_field_values, "1.85.0 " , Some ( 132162 ) ) ,
462
462
/// Allows using `#[deprecated_safe]` to deprecate the safeness of a function or trait
463
463
( unstable, deprecated_safe, "1.61.0" , Some ( 94978 ) ) ,
464
464
/// Allows having using `suggestion` in the `#[deprecated]` attribute.
@@ -508,7 +508,7 @@ declare_features! (
508
508
/// Allows registering static items globally, possibly across crates, to iterate over at runtime.
509
509
( unstable, global_registration, "1.80.0" , Some ( 125119 ) ) ,
510
510
/// Allows using guards in patterns.
511
- ( incomplete, guard_patterns, "CURRENT_RUSTC_VERSION " , Some ( 129967 ) ) ,
511
+ ( incomplete, guard_patterns, "1.85.0 " , Some ( 129967 ) ) ,
512
512
/// Allows using `..=X` as a patterns in slices.
513
513
( unstable, half_open_range_patterns_in_slices, "1.66.0" , Some ( 67264 ) ) ,
514
514
/// Allows `if let` guard in match arms.
@@ -637,9 +637,9 @@ declare_features! (
637
637
/// not changed from prior instances of the same struct (RFC #2528)
638
638
( unstable, type_changing_struct_update, "1.58.0" , Some ( 86555 ) ) ,
639
639
/// Allows using `unsafe<'a> &'a T` unsafe binder types.
640
- ( incomplete, unsafe_binders, "CURRENT_RUSTC_VERSION " , Some ( 130516 ) ) ,
640
+ ( incomplete, unsafe_binders, "1.85.0 " , Some ( 130516 ) ) ,
641
641
/// Allows declaring fields `unsafe`.
642
- ( incomplete, unsafe_fields, "CURRENT_RUSTC_VERSION " , Some ( 132922 ) ) ,
642
+ ( incomplete, unsafe_fields, "1.85.0 " , Some ( 132922 ) ) ,
643
643
/// Allows const generic parameters to be defined with types that
644
644
/// are not `Sized`, e.g. `fn foo<const N: [u8]>() {`.
645
645
( incomplete, unsized_const_params, "1.82.0" , Some ( 95174 ) ) ,
0 commit comments