rust/compiler
bors 317ec04d18 Auto merge of #111780 - weiznich:diagnostic_namespace, r=petrochenkov
Diagnostic namespace

This PR implements the basic infrastructure for accepting the `#[diagnostic]` attribute tool namespace as specified in https://github.com/rust-lang/rfcs/pull/3368. Note: This RFC is not merged yet, but it seems like it will be accepted soon. I open this PR early on to get feedback on the actual implementation as soon as possible. This hopefully enables getting at least the diagnostic namespace to stable rust "soon", so that crates do not need to bump their MSRV if we stabilize actual attributes in this namespace.

 This PR only adds infrastructure accept attributes from this namespace, it does not add any specific attribute. Therefore the compiler will emit a lint warning for each attribute that's actually used. This namespace is added behind a feature flag, so it will be only available on a nightly compiler for now.

cc `@estebank` as they've supported me in planing, specifying and implementing this feature.
2023-07-28 14:18:29 +00:00
..
rustc
rustc_abi Rollup merge of #114060 - davidtwco:issue-113279, r=wesleywiser 2023-07-25 19:21:39 +02:00
rustc_arena Extend unused_must_use to cover block exprs 2023-06-15 17:59:13 +08:00
rustc_ast Auto merge of #114119 - nnethercote:opt-TokenKind-clone, r=petrochenkov 2023-07-28 12:30:27 +00:00
rustc_ast_lowering more clippy::style fixes: 2023-07-23 23:39:04 +02:00
rustc_ast_passes Introduce the #[diagnostic] attribute namespace 2023-07-28 13:28:02 +02:00
rustc_ast_pretty more clippy::style fixes: 2023-07-23 23:39:04 +02:00
rustc_attr Add infrastructure #[rustc_confusables] attribute to allow targeted 2023-07-16 19:22:03 +08:00
rustc_baked_icu_data
rustc_borrowck Remove constness from ParamEnv 2023-07-27 15:50:42 +00:00
rustc_builtin_macros builtin_macros: raw str in diagnostic output 2023-07-25 11:12:52 +01:00
rustc_codegen_cranelift Merge commit '1eded3619d0e55d57521a259bf27a03906fdfad0' into sync_cg_clif-2023-07-22 2023-07-22 13:32:34 +00:00
rustc_codegen_gcc Auto merge of #113877 - JhonnyBillM:reuse-codegen-ssa-monomorphization-errors-in-gcc, r=davidtwco 2023-07-24 11:29:59 +00:00
rustc_codegen_llvm coverage: Obtain the __llvm_covfun section name outside a per-function loop 2023-07-24 21:58:00 +10:00
rustc_codegen_ssa Rollup merge of #113872 - nnethercote:tweak-cgu-sorting, r=pnkfelix 2023-07-27 06:04:12 +02:00
rustc_const_eval Auto merge of #114134 - fee1-dead-contrib:rm-constness-from-param-env, r=oli-obk 2023-07-28 08:53:12 +00:00
rustc_data_structures more clippy::style fixes: 2023-07-23 23:39:04 +02:00
rustc_driver Update rustix 2023-07-03 07:20:51 +00:00
rustc_driver_impl Use a builder instead of boolean/option arguments 2023-07-25 13:51:15 +00:00
rustc_error_codes error/E0691: include alignment in error message 2023-07-21 11:04:16 +02:00
rustc_error_messages borrowck/errors: fix i18n error in delayed bug 2023-07-24 15:47:03 +01:00
rustc_errors Auto merge of #113298 - tgross35:update-bless-envs, r=oli-obk 2023-07-27 17:45:11 +00:00
rustc_expand Auto merge of #114115 - nnethercote:less-token-tree-cloning, r=petrochenkov 2023-07-28 01:21:27 +00:00
rustc_feature Introduce the #[diagnostic] attribute namespace 2023-07-28 13:28:02 +02:00
rustc_fluent_macro
rustc_fs_util
rustc_graphviz
rustc_hir more clippy::style fixes: 2023-07-23 23:39:04 +02:00
rustc_hir_analysis Remove constness from ParamEnv 2023-07-27 15:50:42 +00:00
rustc_hir_pretty hir: Add Become expression kind 2023-06-26 08:56:32 +00:00
rustc_hir_typeck Remove constness from ParamEnv 2023-07-27 15:50:42 +00:00
rustc_incremental Re-format let-else per rustfmt update 2023-07-12 21:49:27 -04:00
rustc_index Re-format let-else per rustfmt update 2023-07-12 21:49:27 -04:00
rustc_infer Remove constness from ParamEnv 2023-07-27 15:50:42 +00:00
rustc_interface replace atty crate with std's isTerminal 2023-07-26 18:09:50 +03:00
rustc_lexer Auto merge of #113476 - fee1-dead-contrib:c-str-lit, r=petrochenkov 2023-07-25 12:04:34 +00:00
rustc_lint Rollup merge of #114075 - matthiaskrgr:fmt_args_rustc_3, r=wesleywiser 2023-07-27 06:04:13 +02:00
rustc_lint_defs Auto merge of #111780 - weiznich:diagnostic_namespace, r=petrochenkov 2023-07-28 14:18:29 +00:00
rustc_llvm Support .comment section like GCC/Clang (!llvm.ident) 2023-07-21 22:01:50 +02:00
rustc_log Downgrade tracing and syn 2023-07-02 21:02:31 +02:00
rustc_macros Bump syn now that it doesn't affect diagnostics anymore 2023-07-26 08:26:50 +00:00
rustc_metadata Auto merge of #113958 - lukas-code:doc-links, r=GuillaumeGomez,petrochenkov 2023-07-25 01:35:53 +00:00
rustc_middle Remove constness from ParamEnv 2023-07-27 15:50:42 +00:00
rustc_mir_build Rollup merge of #114075 - matthiaskrgr:fmt_args_rustc_3, r=wesleywiser 2023-07-27 06:04:13 +02:00
rustc_mir_dataflow Turn copy into moves during DSE. 2023-07-19 09:59:12 +00:00
rustc_mir_transform Rollup merge of #114075 - matthiaskrgr:fmt_args_rustc_3, r=wesleywiser 2023-07-27 06:04:13 +02:00
rustc_monomorphize Rollup merge of #113872 - nnethercote:tweak-cgu-sorting, r=pnkfelix 2023-07-27 06:04:12 +02:00
rustc_parse Rollup merge of #114081 - nnethercote:desugar_doc_comments-cleanups, r=petrochenkov 2023-07-27 06:04:14 +02:00
rustc_parse_format Fix unit tests 2023-07-19 16:37:09 +00:00
rustc_passes inline format!() args from rustc_codegen_llvm to the end (4) 2023-07-25 23:20:28 +02:00
rustc_plugin_impl
rustc_privacy refactor(rustc_middle): Substs -> GenericArg 2023-07-14 13:27:35 +01:00
rustc_query_impl fix couple of clippy findings: 2023-07-23 10:50:14 +02:00
rustc_query_system Revert "Auto merge of #113166 - moulins:ref-niches-initial, r=oli-obk" 2023-07-21 22:35:57 -07:00
rustc_resolve Introduce the #[diagnostic] attribute namespace 2023-07-28 13:28:02 +02:00
rustc_serialize Upgrade to indexmap 2.0.0 2023-07-03 13:51:54 -07:00
rustc_session Rollup merge of #114139 - Urgau:make-print-with-path-unstable, r=jackh726 2023-07-27 13:22:07 -07:00
rustc_smir Rollup merge of #114082 - ericmarkmartin:smir-nullary-op, r=spastorino 2023-07-27 06:04:14 +02:00
rustc_span Introduce the #[diagnostic] attribute namespace 2023-07-28 13:28:02 +02:00
rustc_symbol_mangling Auto merge of #113708 - rcvalle:rust-cfi-fix-100778, r=compiler-errors 2023-07-27 02:48:38 +00:00
rustc_target Auto merge of #113411 - unikraft:unikraft, r=wesleywiser 2023-07-25 03:41:56 +00:00
rustc_trait_selection Auto merge of #113312 - Ddystopia:auto-trait-fun, r=lcnr 2023-07-28 10:41:00 +00:00
rustc_traits refactor(rustc_middle): Substs -> GenericArg 2023-07-14 13:27:35 +01:00
rustc_transmute Auto merge of #113677 - bryangarza:unevaluated-const-ice_issue-110892, r=davidtwco 2023-07-18 09:07:32 +00:00
rustc_ty_utils Remove constness from ParamEnv 2023-07-27 15:50:42 +00:00
rustc_type_ir add docs for AliasKind::Inherent 2023-07-22 15:38:41 -04:00