@@ -37,7 +37,7 @@ declare_lint_pass! {
37
37
DEPRECATED ,
38
38
DEPRECATED_CFG_ATTR_CRATE_TYPE_NAME ,
39
39
DEPRECATED_IN_FUTURE ,
40
- DEPRECATED_SAFE ,
40
+ DEPRECATED_SAFE_2024 ,
41
41
DEPRECATED_WHERE_CLAUSE_LOCATION ,
42
42
DUPLICATE_MACRO_ATTRIBUTES ,
43
43
ELIDED_LIFETIMES_IN_ASSOCIATED_CONSTANT ,
@@ -4812,8 +4812,8 @@ declare_lint! {
4812
4812
}
4813
4813
4814
4814
declare_lint ! {
4815
- /// The `deprecated_safe ` lint detects unsafe functions being used as safe
4816
- /// functions.
4815
+ /// The `deprecated_safe_2024 ` lint detects unsafe functions being used as
4816
+ /// safe functions.
4817
4817
///
4818
4818
/// ### Example
4819
4819
///
@@ -4832,8 +4832,8 @@ declare_lint! {
4832
4832
///
4833
4833
/// Rust [editions] allow the language to evolve without breaking backward
4834
4834
/// compatibility. This lint catches code that uses `unsafe` functions that
4835
- /// were declared as safe (non-`unsafe`) in earlier editions. If you switch
4836
- /// the compiler to a new edition without updating the code, then it
4835
+ /// were declared as safe (non-`unsafe`) in editions prior to Rust 2024. If
4836
+ /// you switch the compiler to Rust 2024 without updating the code, then it
4837
4837
/// will fail to compile if you are using a function previously marked as
4838
4838
/// safe.
4839
4839
///
@@ -4850,7 +4850,7 @@ declare_lint! {
4850
4850
/// future.
4851
4851
///
4852
4852
/// [editions]: https://doc.rust-lang.org/edition-guide/
4853
- pub DEPRECATED_SAFE ,
4853
+ pub DEPRECATED_SAFE_2024 ,
4854
4854
Allow ,
4855
4855
"detects unsafe functions being used as safe functions" ,
4856
4856
@future_incompatible = FutureIncompatibleInfo {
0 commit comments