-
Notifications
You must be signed in to change notification settings - Fork 676
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump various dependency versions #10214
Conversation
❤️ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
paint("HEADER", Purple.bold(), use_colour), | ||
paint("HEADER", Magenta.style().bold(), use_colour), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol, did they actually rename the color when bumping version or do you just like megenta more? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah nevemind, it's different library
@@ -538,9 +538,9 @@ impl InfoHelper { | |||
|
|||
fn log_chain_processing_info(&mut self, client: &crate::Client, epoch_id: &EpochId) { | |||
let chain = &client.chain; | |||
let use_colour = matches!(self.log_summary_style, LogSummaryStyle::Colored); | |||
let use_color = matches!(self.log_summary_style, LogSummaryStyle::Colored); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a British resident I strongly disagree ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(I'm fine with it, just don't tell the king)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Heh 😅 turns out ansi_term
was written by british people, and yansi
by americans, or so it seems :p
use std::io::IsTerminal; | ||
std::io::stderr().is_terminal() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
This reverts commit 7934b34.
In particular:
Also:
All this together, alongside with #10201, gets us to zero cargo-audit warnings :)
This might be best reviewed commit-by-commit, to more easily see which changes are due to which dependency (though I tried bumping chrono and replacing ansi_term at the same time, resulting in alternating commits as my test compilations made progress)