Bump serde_json from 1.0.61 to 1.0.64 in /packer (#1973)
Summary: Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.61 to 1.0.64. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.64</h2> <ul> <li>Fix deserialization panic on deserializing <code>RawValue</code> from a slice containing non-utf8 bytes (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/755">https://github.com/facebook/flipper/issues/755</a>)</li> </ul> <h2>v1.0.63</h2> <ul> <li>Provide <code>Entry::and_modify</code> method on <a href="https://docs.rs/serde_json/1.0/serde_json/map/enum.Entry.html">serde_json::map::Entry</a> (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/754">https://github.com/facebook/flipper/issues/754</a>, thanks <a href="https://github.com/Krout0n"><code>@Krout0n</code></a>)</li> </ul> <h2>v1.0.62</h2> <ul> <li>Speed up Display impl of serde_json::Value by 33% (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/751">https://github.com/facebook/flipper/issues/751</a>, thanks <a href="https://github.com/icewind1991"><code>@icewind1991</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="d0d80783d3"><code>d0d8078</code></a> Release 1.0.64</li> <li><a href="8d3b890ef8"><code>8d3b890</code></a> Fix IoRead's raw buffering on invalid utf-8 as well</li> <li><a href="054326ea8a"><code>054326e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/757">https://github.com/facebook/flipper/issues/757</a> from serde-rs/panicraw</li> <li><a href="c64c1d7429"><code>c64c1d7</code></a> Fix panic deserializing RawValue from invalid utf-8 bytes</li> <li><a href="2f812d0363"><code>2f812d0</code></a> Add test of RawValue deserialization from invalid utf-8</li> <li><a href="9bcb08fd92"><code>9bcb08f</code></a> Fix unnecessary trailing semicolon lints in test suite</li> <li><a href="d400899cbd"><code>d400899</code></a> Release 1.0.63</li> <li><a href="461f2bfc39"><code>461f2bf</code></a> Merge pull request 754 from Krout0n/entry#and_modify</li> <li><a href="6e140a9192"><code>6e140a9</code></a> Add Entry::and_modify</li> <li><a href="64dd1e03e0"><code>64dd1e0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/752">https://github.com/facebook/flipper/issues/752</a> from SamuelQZQ/patch-2</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.61...v1.0.64">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/1973 Reviewed By: priteshrnandgaonkar Differential Revision: D26723665 Pulled By: mweststrate fbshipit-source-id: 4f277cb08117193c27b4b1ec936a602cb782cd13
This commit is contained in:
committed by
Facebook GitHub Bot
parent
b9b0d1506a
commit
77cb741b37
4
packer/Cargo.lock
generated
4
packer/Cargo.lock
generated
@@ -574,9 +574,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "serde_json"
|
name = "serde_json"
|
||||||
version = "1.0.61"
|
version = "1.0.64"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a"
|
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itoa",
|
"itoa",
|
||||||
"ryu",
|
"ryu",
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ serde_yaml = "0.8.16"
|
|||||||
anyhow = "1.0.38"
|
anyhow = "1.0.38"
|
||||||
sha2 = "0.9.3"
|
sha2 = "0.9.3"
|
||||||
data-encoding = "2.3.2"
|
data-encoding = "2.3.2"
|
||||||
serde_json = "1.0.61"
|
serde_json = "1.0.64"
|
||||||
rayon = "1.5.0"
|
rayon = "1.5.0"
|
||||||
indicatif = "0.15.0"
|
indicatif = "0.15.0"
|
||||||
xz2 = "0.1.6"
|
xz2 = "0.1.6"
|
||||||
|
|||||||
Reference in New Issue
Block a user