File tree 3 files changed +18
-0
lines changed
3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,17 @@ fn clean_lib(
203
203
}
204
204
} ;
205
205
206
+ if lib. plugin == Some ( true ) {
207
+ warnings. push ( format ! (
208
+ "support for rustc plugins has been removed from rustc. \
209
+ library `{}` should not specify `plugin = true`",
210
+ name_or_panic( lib)
211
+ ) ) ;
212
+ warnings. push ( format ! (
213
+ "support for `plugin = true` will be removed from cargo in the future"
214
+ ) ) ;
215
+ }
216
+
206
217
// Per the Macros 1.1 RFC:
207
218
//
208
219
// > Initially if a crate is compiled with the `proc-macro` crate type
Original file line number Diff line number Diff line change @@ -896,6 +896,8 @@ fn plugin_build_script_right_arch() {
896
896
. arg ( cross_compile:: alternate ( ) )
897
897
. with_stderr (
898
898
"\
899
+ [WARNING] support for rustc plugins has been removed from rustc. library `foo` should not specify `plugin = true`
900
+ [WARNING] support for `plugin = true` will be removed from cargo in the future
899
901
[COMPILING] foo v0.0.1 ([..])
900
902
[RUNNING] `rustc [..] build.rs [..]`
901
903
[RUNNING] `[..]/build-script-build`
Original file line number Diff line number Diff line change @@ -378,6 +378,11 @@ fn proc_macro_crate_type_warning_plugin() {
378
378
. build ( ) ;
379
379
380
380
foo. cargo ( "check" )
381
+ . with_stderr_contains (
382
+ "[WARNING] support for rustc plugins has been removed from rustc. \
383
+ library `foo` should not specify `plugin = true`")
384
+ . with_stderr_contains (
385
+ "[WARNING] support for `plugin = true` will be removed from cargo in the future" )
381
386
. with_stderr_contains (
382
387
"[WARNING] proc-macro library `foo` should not specify `plugin = true`" )
383
388
. with_stderr_contains (
You can’t perform that action at this time.
0 commit comments