File tree 3 files changed +10
-1
lines changed
librustc_plugin/deprecated
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -3189,6 +3189,7 @@ dependencies = [
3189
3189
" rustc_interface" ,
3190
3190
" rustc_metadata" ,
3191
3191
" rustc_mir" ,
3192
+ " rustc_plugin" ,
3192
3193
" rustc_plugin_impl" ,
3193
3194
" rustc_save_analysis" ,
3194
3195
" rustc_target" ,
@@ -3372,6 +3373,13 @@ dependencies = [
3372
3373
" syntax_pos" ,
3373
3374
]
3374
3375
3376
+ [[package ]]
3377
+ name = " rustc_plugin"
3378
+ version = " 0.0.0"
3379
+ dependencies = [
3380
+ " rustc_plugin_impl" ,
3381
+ ]
3382
+
3375
3383
[[package ]]
3376
3384
name = " rustc_plugin_impl"
3377
3385
version = " 0.0.0"
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ rustc_data_structures = { path = "../librustc_data_structures" }
20
20
errors = { path = " ../librustc_errors" , package = " rustc_errors" }
21
21
rustc_metadata = { path = " ../librustc_metadata" }
22
22
rustc_mir = { path = " ../librustc_mir" }
23
+ rustc_plugin = { path = " ../librustc_plugin/deprecated" } # To get this in the sysroot
23
24
rustc_plugin_impl = { path = " ../librustc_plugin" }
24
25
rustc_save_analysis = { path = " ../librustc_save_analysis" }
25
26
rustc_codegen_utils = { path = " ../librustc_codegen_utils" }
Original file line number Diff line number Diff line change 1
1
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
2
2
#![ feature( staged_api) ]
3
- #![ unstable( feature = "rustc_plugin " , issue = "29597 " ) ]
3
+ #![ unstable( feature = "rustc_private " , issue = "27812 " ) ]
4
4
#![ rustc_deprecated( since = "1.38.0" , reason = "\
5
5
import this through `rustc_driver::plugin` instead to make TLS work correctly. \
6
6
See https://github.com/rust-lang/rust/issues/62717") ]
You can’t perform that action at this time.
0 commit comments