diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2023-11-10 16:28:16 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2023-11-10 16:35:56 +0200 |
| commit | 01422d17045ffd3f5436de19371dd7eee0ca81a5 (patch) | |
| tree | 219dfbe5c054edef99277c012813b484343c8f0a | |
| parent | 89a3fd4992083f40ddffa95866dec9088aa9a37b (diff) | |
| download | rust-01422d17045ffd3f5436de19371dd7eee0ca81a5.tar.gz rust-01422d17045ffd3f5436de19371dd7eee0ca81a5.zip | |
Allow rustc_private for RustAnalyzer
| -rw-r--r-- | src/bootstrap/src/core/build_steps/tool.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/src/core/build_steps/tool.rs b/src/bootstrap/src/core/build_steps/tool.rs index d5f759ea159..9912681c781 100644 --- a/src/bootstrap/src/core/build_steps/tool.rs +++ b/src/bootstrap/src/core/build_steps/tool.rs @@ -603,8 +603,7 @@ pub struct RustAnalyzer { } impl RustAnalyzer { - pub const ALLOW_FEATURES: &'static str = - "proc_macro_internals,proc_macro_diagnostic,proc_macro_span,proc_macro_span_shrink"; + pub const ALLOW_FEATURES: &'static str = "rustc_private,proc_macro_internals,proc_macro_diagnostic,proc_macro_span,proc_macro_span_shrink"; } impl Step for RustAnalyzer { |
