mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 20:09:19 +00:00
Don't report build-scripts and proc-macros are metadata progress
This commit is contained in:
parent
476d043874
commit
fd9cd8476b
1 changed files with 3 additions and 1 deletions
|
@ -154,6 +154,8 @@ impl WorkspaceBuildScripts {
|
||||||
Some(&it) => it,
|
Some(&it) => it,
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
|
progress(format!("running build-script: {}", workspace[package].name));
|
||||||
|
|
||||||
let cfgs = {
|
let cfgs = {
|
||||||
let mut acc = Vec::new();
|
let mut acc = Vec::new();
|
||||||
for cfg in message.cfgs {
|
for cfg in message.cfgs {
|
||||||
|
@ -189,7 +191,7 @@ impl WorkspaceBuildScripts {
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
|
|
||||||
progress(format!("metadata {}", message.target.name));
|
progress(format!("building proc-macros: {}", message.target.name));
|
||||||
|
|
||||||
if message.target.kind.iter().any(|k| k == "proc-macro") {
|
if message.target.kind.iter().any(|k| k == "proc-macro") {
|
||||||
// Skip rmeta file
|
// Skip rmeta file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue