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 b486362 commit 92182d4Copy full SHA for 92182d4
src/cargo/core/shell.rs
@@ -172,7 +172,7 @@ impl Shell {
172
where
173
T: fmt::Display,
174
{
175
- self.print(&status, None, &NOTE, true)
+ self.print(&status, None, &TRANSIENT, true)
176
}
177
178
/// Shortcut to right-align a status message.
src/cargo/util/style.rs
@@ -11,3 +11,4 @@ pub const NOTE: Style = annotate_snippets::renderer::DEFAULT_NOTE_STYLE;
11
pub const GOOD: Style = AnsiColor::BrightGreen.on_default().effects(Effects::BOLD);
12
pub const VALID: Style = AnsiColor::BrightCyan.on_default().effects(Effects::BOLD);
13
pub const INVALID: Style = annotate_snippets::renderer::DEFAULT_WARNING_STYLE;
14
+pub const TRANSIENT: Style = NOTE;
0 commit comments