Bump xz2 from 0.1.6 to 0.1.7 in /packer (#3814)
Summary: Bumps [xz2](https://github.com/alexcrichton/xz2-rs) from 0.1.6 to 0.1.7. <details> <summary>Commits</summary> <ul> <li><a href="fe71b3b7d8"><code>fe71b3b</code></a> Bump version numbers</li> <li><a href="949294ec70"><code>949294e</code></a> Fix typo (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/92">https://github.com/facebook/flipper/issues/92</a>)</li> <li><a href="3a7406e406"><code>3a7406e</code></a> Fix typo in version number (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/90">https://github.com/facebook/flipper/issues/90</a>)</li> <li><a href="8db5c19b5e"><code>8db5c19</code></a> Re-export the static feature from lzma-sys. (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/85">https://github.com/facebook/flipper/issues/85</a>)</li> <li><a href="c58d7b96c6"><code>c58d7b9</code></a> Remove dependabot config</li> <li><a href="76c3557be6"><code>76c3557</code></a> Made ErrorKind for std::io::Error more specific (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/80">https://github.com/facebook/flipper/issues/80</a>)</li> <li><a href="32665290a0"><code>3266529</code></a> Upgrade to GitHub-native Dependabot (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/77">https://github.com/facebook/flipper/issues/77</a>)</li> <li><a href="6c1a78c4bf"><code>6c1a78c</code></a> Update quickcheck requirement from 0.9.0 to 1.0.1 (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/72">https://github.com/facebook/flipper/issues/72</a>)</li> <li><a href="341a3fa06b"><code>341a3fa</code></a> Update rand requirement from 0.7.0 to 0.8.0 (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/69">https://github.com/facebook/flipper/issues/69</a>)</li> <li><a href="880dbdee22"><code>880dbde</code></a> Render with more cargo features on docs.rs (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/68">https://github.com/facebook/flipper/issues/68</a>)</li> <li>Additional commits viewable in <a href="https://github.com/alexcrichton/xz2-rs/compare/0.1.6...0.1.7">compare view</a></li> </ul> </details> <br /> [](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/3814 Reviewed By: aigoncharov Differential Revision: D40335015 Pulled By: mweststrate fbshipit-source-id: c907ac9324a4f412c1688b95b6da80a504a7b7f1
This commit is contained in:
committed by
Facebook GitHub Bot
parent
27609f9ce2
commit
479b2d6553
8
packer/Cargo.lock
generated
8
packer/Cargo.lock
generated
@@ -402,9 +402,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "lzma-sys"
|
||||
version = "0.1.17"
|
||||
version = "0.1.19"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bdb4b7c3eddad11d3af9e86c487607d2d2442d185d848575365c4856ba96d619"
|
||||
checksum = "e06754c4acf47d49c727d5665ca9fb828851cda315ed3bd51edd148ef78a8772"
|
||||
dependencies = [
|
||||
"cc",
|
||||
"libc",
|
||||
@@ -869,9 +869,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "xz2"
|
||||
version = "0.1.6"
|
||||
version = "0.1.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c179869f34fc7c01830d3ce7ea2086bc3a07e0d35289b667d0a8bf910258926c"
|
||||
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
||||
dependencies = [
|
||||
"lzma-sys",
|
||||
]
|
||||
|
||||
@@ -21,7 +21,7 @@ data-encoding = "^2"
|
||||
serde_json = "^1"
|
||||
rayon = "^1.5"
|
||||
indicatif = "^0.16"
|
||||
xz2 = "0.1.6"
|
||||
xz2 = "0.1.7"
|
||||
ignore = "0.4.18"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user