Skip to content

Commit

Permalink
Bump indicatif from 0.16.2 to 0.17.0 (#1523)
Browse files Browse the repository at this point in the history
* Bump indicatif from 0.16.2 to 0.17.0

Bumps [indicatif](https://github.com/console-rs/indicatif) from 0.16.2 to 0.17.0.
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.16.2...0.17.0)

---
updated-dependencies:
- dependency-name: indicatif
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Okay but make it compile tho

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sean Klein <[email protected]>
  • Loading branch information
dependabot[bot] and smklein authored Aug 19, 2022
1 parent b46d1b1 commit 1335d61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ anyhow = "1.0"
clap = { version = "3.2", features = ["derive"] }
futures = "0.3.23"
hex = "0.4.3"
indicatif = { version = "0.16.2", features = ["rayon"] }
indicatif = { version = "0.17.0", features = ["rayon"] }
omicron-common = { path = "../common" }
omicron-sled-agent = { path = "../sled-agent" }
omicron-zone-package = "0.3.2"
Expand Down
3 changes: 2 additions & 1 deletion package/src/bin/omicron-package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ async fn do_package(config: &Config, output_directory: &Path) -> Result<()> {
},
);

tokio::task::spawn_blocking(move || ui.multi.join());
tokio::try_join!(external_pkg_stream, internal_pkg_stream)?;

Ok(())
Expand Down Expand Up @@ -496,12 +495,14 @@ fn in_progress_style() -> ProgressStyle {
.template(
"[{elapsed_precise}] {bar:40.cyan/blue} {pos:>7}/{len:7} {msg}",
)
.expect("Invalid template")
.progress_chars("#>.")
}

fn completed_progress_style() -> ProgressStyle {
ProgressStyle::default_bar()
.template("[{elapsed_precise}] {bar:40.cyan/blue} {pos:>7}/{len:7} {msg:.green}")
.expect("Invalid template")
.progress_chars("#>.")
}

Expand Down

0 comments on commit 1335d61

Please sign in to comment.