We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 476d043 commit fd9cd84Copy full SHA for fd9cd84
crates/project-model/src/build_scripts.rs
@@ -154,6 +154,8 @@ impl WorkspaceBuildScripts {
154
Some(&it) => it,
155
None => return,
156
};
157
+ progress(format!("running build-script: {}", workspace[package].name));
158
+
159
let cfgs = {
160
let mut acc = Vec::new();
161
for cfg in message.cfgs {
@@ -189,7 +191,7 @@ impl WorkspaceBuildScripts {
189
191
190
192
193
- progress(format!("metadata {}", message.target.name));
194
+ progress(format!("building proc-macros: {}", message.target.name));
195
196
if message.target.kind.iter().any(|k| k == "proc-macro") {
197
// Skip rmeta file
0 commit comments