Bump indicatif from 0.15.0 to 0.16.2 in /packer (#2383)

Summary:
Bumps [indicatif](https://github.com/mitsuhiko/indicatif) from 0.15.0 to 0.16.2.
<details>
<summary>Commits</summary>
<ul>
<li><a href="7dfae137ae"><code>7dfae13</code></a> Bump version number to 0.16.2</li>
<li><a href="ec09e50f15"><code>ec09e50</code></a> Tweak documentation</li>
<li><a href="3e6b26f606"><code>3e6b26f</code></a> Fix typos in documentation</li>
<li><a href="aadb3723a5"><code>aadb372</code></a> Fix broken intra-doc links</li>
<li><a href="3f49b0e9ec"><code>3f49b0e</code></a> ProgressFolder shouldn't finish progress bars on completion</li>
<li><a href="17a8e33387"><code>17a8e33</code></a> Ignore macOS cruft</li>
<li><a href="f5ab4538f4"><code>f5ab453</code></a> Bump version to 0.16.1</li>
<li><a href="c1a5a7c926"><code>c1a5a7c</code></a> Add test for hidden progress bar in MultiProgress (see <a href="https://github-redirect.dependabot.com/mitsuhiko/indicatif/issues/286">https://github.com/facebook/flipper/issues/286</a>)</li>
<li><a href="1047de9609"><code>1047de9</code></a> Fix: Code is actually reachable</li>
<li><a href="6a49439748"><code>6a49439</code></a> Update expand_template regex to recognize from_dotted_str() 256 colors</li>
<li>Additional commits viewable in <a href="https://github.com/mitsuhiko/indicatif/compare/0.15.0...0.16.2">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=indicatif&package-manager=cargo&previous-version=0.15.0&new-version=0.16.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

 ---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

</details>

Pull Request resolved: https://github.com/facebook/flipper/pull/2383

Reviewed By: nikoant

Differential Revision: D28795401

Pulled By: passy

fbshipit-source-id: d23992a9c83c7f830c9848804d1c66aba174d4a5
This commit is contained in:
dependabot[bot]
2021-06-01 04:42:20 -07:00
committed by Facebook GitHub Bot
parent 4fd63d44e5
commit 3859d9c098
2 changed files with 5 additions and 7 deletions

10
packer/Cargo.lock generated
View File

@@ -103,9 +103,7 @@ dependencies = [
"encode_unicode", "encode_unicode",
"lazy_static", "lazy_static",
"libc", "libc",
"regex",
"terminal_size", "terminal_size",
"unicode-width",
"winapi", "winapi",
] ]
@@ -324,9 +322,9 @@ dependencies = [
[[package]] [[package]]
name = "indicatif" name = "indicatif"
version = "0.15.0" version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4" checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
dependencies = [ dependencies = [
"console", "console",
"lazy_static", "lazy_static",
@@ -405,9 +403,9 @@ dependencies = [
[[package]] [[package]]
name = "number_prefix" name = "number_prefix"
version = "0.3.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a" checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
[[package]] [[package]]
name = "once_cell" name = "once_cell"

View File

@@ -20,7 +20,7 @@ sha2 = "0.9.5"
data-encoding = "2.3.2" data-encoding = "2.3.2"
serde_json = "1.0.64" serde_json = "1.0.64"
rayon = "1.5.0" rayon = "1.5.0"
indicatif = "0.15.0" indicatif = "0.16.2"
xz2 = "0.1.6" xz2 = "0.1.6"
ignore = "^0.4.17" ignore = "^0.4.17"