File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
librustc_plugin/deprecated Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -3189,6 +3189,7 @@ dependencies = [
31893189 " rustc_interface" ,
31903190 " rustc_metadata" ,
31913191 " rustc_mir" ,
3192+ " rustc_plugin" ,
31923193 " rustc_plugin_impl" ,
31933194 " rustc_save_analysis" ,
31943195 " rustc_target" ,
@@ -3372,6 +3373,13 @@ dependencies = [
33723373 " syntax_pos" ,
33733374]
33743375
3376+ [[package ]]
3377+ name = " rustc_plugin"
3378+ version = " 0.0.0"
3379+ dependencies = [
3380+ " rustc_plugin_impl" ,
3381+ ]
3382+
33753383[[package ]]
33763384name = " rustc_plugin_impl"
33773385version = " 0.0.0"
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ rustc_data_structures = { path = "../librustc_data_structures" }
2020errors = { path = " ../librustc_errors" , package = " rustc_errors" }
2121rustc_metadata = { path = " ../librustc_metadata" }
2222rustc_mir = { path = " ../librustc_mir" }
23+ rustc_plugin = { path = " ../librustc_plugin/deprecated" } # To get this in the sysroot
2324rustc_plugin_impl = { path = " ../librustc_plugin" }
2425rustc_save_analysis = { path = " ../librustc_save_analysis" }
2526rustc_codegen_utils = { path = " ../librustc_codegen_utils" }
Original file line number Diff line number Diff line change 11#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
22#![ feature( staged_api) ]
3- #![ unstable( feature = "rustc_plugin " , issue = "29597 " ) ]
3+ #![ unstable( feature = "rustc_private " , issue = "27812 " ) ]
44#![ rustc_deprecated( since = "1.38.0" , reason = "\
55 import this through `rustc_driver::plugin` instead to make TLS work correctly. \
66 See https://github.com/rust-lang/rust/issues/62717") ]
You can’t perform that action at this time.
0 commit comments