Bump serde from 1.0.130 to 1.0.132 in /packer (#3192)
Summary: Bumps [serde](https://github.com/serde-rs/serde) from 1.0.130 to 1.0.132. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/serde/releases">serde's releases</a>.</em></p> <blockquote> <h2>v1.0.132</h2> <ul> <li>Enable Serialize and Deserialize impls for <code>std::sync::atomic::{AtomicI64, AtomicU64}</code> on riscv64 arch (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2141">https://github.com/facebook/flipper/issues/2141</a>, thanks <a href="https://github.com/Avimitin"><code>@Avimitin</code></a>)</li> </ul> <h2>v1.0.131</h2> <ul> <li>Avoid <code>unused_results</code> being triggered in generated code for adjacently tagged enum (<a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2116">https://github.com/facebook/flipper/issues/2116</a>, thanks <a href="https://github.com/tyranron"><code>@tyranron</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="77ae1c3bf7"><code>77ae1c3</code></a> Release 1.0.132</li> <li><a href="b85e28166c"><code>b85e281</code></a> Update path to rustc target spec files</li> <li><a href="0508cb50fc"><code>0508cb5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2141">https://github.com/facebook/flipper/issues/2141</a> from Avimitin/risc-v</li> <li><a href="84fdc7df69"><code>84fdc7d</code></a> Enable atomic64 on riscv64 arch</li> <li><a href="ab1ca04b2e"><code>ab1ca04</code></a> Release 1.0.131</li> <li><a href="fb2fe409c8"><code>fb2fe40</code></a> Touch up PR 2116</li> <li><a href="549fac7235"><code>549fac7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2116">https://github.com/facebook/flipper/issues/2116</a> from tyranron/fix-unused-results</li> <li><a href="c375d8b19b"><code>c375d8b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2124">https://github.com/facebook/flipper/issues/2124</a> from dtolnay/cbor</li> <li><a href="6cf507f808"><code>6cf507f</code></a> Change cbor link to new repo</li> <li><a href="c3c1641c06"><code>c3c1641</code></a> Remove workaround for redundant_field_names Clippy bug</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/serde/compare/v1.0.130...v1.0.132">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/3192 Reviewed By: passy Differential Revision: D33233989 Pulled By: aigoncharov fbshipit-source-id: a9966ec873f0fb950ec71a17219f714193c88ffa
This commit is contained in:
committed by
Facebook GitHub Bot
parent
4eca2b299c
commit
0eaa647863
8
packer/Cargo.lock
generated
8
packer/Cargo.lock
generated
@@ -596,18 +596,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
||||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "1.0.130"
|
||||
version = "1.0.132"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
|
||||
checksum = "8b9875c23cf305cd1fd7eb77234cbb705f21ea6a72c637a5c6db5fe4b8e7f008"
|
||||
dependencies = [
|
||||
"serde_derive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "serde_derive"
|
||||
version = "1.0.130"
|
||||
version = "1.0.132"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
|
||||
checksum = "ecc0db5cb2556c0e558887d9bbdcf6ac4471e83ff66cf696e5419024d1606276"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
||||
@@ -13,7 +13,7 @@ edition = "2018"
|
||||
clap = "2.34.0"
|
||||
shellexpand = "2.1.0"
|
||||
tar = "0.4.37"
|
||||
serde = { version = "1.0.130", features = ["derive"] }
|
||||
serde = { version = "1.0.132", features = ["derive"] }
|
||||
serde_yaml = "0.8.21"
|
||||
anyhow = "1.0.51"
|
||||
sha2 = "0.10.0"
|
||||
|
||||
Reference in New Issue
Block a user