Set c_str_literals stabilization version back to CURRENT_RUSTC_VERSION

`c_str_literals`'s stabilization has been delayed to 1.77 (https://github.com/rust-lang/rust/pull/119528).
This commit is contained in:
Eduardo Sánchez Muñoz 2024-01-11 19:46:16 +01:00
parent 062e7c6a95
commit c03808f53b

View File

@ -77,7 +77,7 @@ macro_rules! declare_features {
/// Allows empty structs and enum variants with braces.
(accepted, braced_empty_structs, "1.8.0", Some(29720)),
/// Allows `c"foo"` literals.
(accepted, c_str_literals, "1.76.0", Some(105723)),
(accepted, c_str_literals, "CURRENT_RUSTC_VERSION", Some(105723)),
/// Allows `#[cfg_attr(predicate, multiple, attributes, here)]`.
(accepted, cfg_attr_multi, "1.33.0", Some(54881)),
/// Allows the use of `#[cfg(doctest)]`, set when rustdoc is collecting doctests.