Bump indicatif from 0.15.0 to 0.16.2 (#17628)
* Bump indicatif from 0.15.0 to 0.16.2 Bumps [indicatif](https://github.com/mitsuhiko/indicatif) from 0.15.0 to 0.16.2. - [Release notes](https://github.com/mitsuhiko/indicatif/releases) - [Commits](https://github.com/mitsuhiko/indicatif/compare/0.15.0...0.16.2) Signed-off-by: dependabot[bot] <support@github.com> * [auto-commit] Update all Cargo lock files * Fix message types Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com> Co-authored-by: Tyera Eulberg <tyera@solana.com>
This commit is contained in:
@@ -12,7 +12,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
bzip2 = "0.3.3"
|
||||
console = "0.14.1"
|
||||
indicatif = "0.15.0"
|
||||
indicatif = "0.16.2"
|
||||
log = "0.4.11"
|
||||
reqwest = { version = "0.11.2", default-features = false, features = ["blocking", "rustls-tls", "json"] }
|
||||
solana-sdk = { path = "../sdk", version = "=1.8.0" }
|
||||
|
@@ -78,7 +78,7 @@ pub fn download_file<'a, 'b>(
|
||||
|
||||
let progress_bar = new_spinner_progress_bar();
|
||||
if use_progress_bar {
|
||||
progress_bar.set_message(&format!("{}Downloading {}...", TRUCK, url));
|
||||
progress_bar.set_message(format!("{}Downloading {}...", TRUCK, url));
|
||||
}
|
||||
|
||||
let response = reqwest::blocking::Client::new()
|
||||
@@ -108,7 +108,7 @@ pub fn download_file<'a, 'b>(
|
||||
)
|
||||
.progress_chars("=> "),
|
||||
);
|
||||
progress_bar.set_message(&format!("{}Downloading~ {}", TRUCK, url));
|
||||
progress_bar.set_message(format!("{}Downloading~ {}", TRUCK, url));
|
||||
} else {
|
||||
info!("Downloading {} bytes from {}", download_size, url);
|
||||
}
|
||||
|
Reference in New Issue
Block a user