Skip to content

Commit

Permalink
chore(deps): bump serde from 1.0.204 to 1.0.205 (#470)
Browse files Browse the repository at this point in the history
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.204 to
1.0.205.
<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.205</h2>
<ul>
<li>Use serialize_entry instead of serialize_key + serialize_value when
serialize flattened newtype enum variants (<a
href="https://redirect.github.com/serde-rs/serde/issues/2785">#2785</a>,
thanks <a
href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li>
<li>Avoid triggering a collection_is_never_read lint in the
deserialization of enums containing flattened fields (<a
href="https://redirect.github.com/serde-rs/serde/issues/2791">#2791</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/serde-rs/serde/commit/9b868ef831c95f50dd4bde51a7eb52e3b9ee265a"><code>9b868ef</code></a>
Release 1.0.205</li>
<li><a
href="https://github.com/serde-rs/serde/commit/c3eaf76430fb29b5a439dc74d71c6af6c2182a6b"><code>c3eaf76</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2791">#2791</a>
from dtolnay/flatten</li>
<li><a
href="https://github.com/serde-rs/serde/commit/32958dec3bf3886961166ec651194d6f0243a497"><code>32958de</code></a>
Skip collecting unmatched fields in variants that do not use
flatten</li>
<li><a
href="https://github.com/serde-rs/serde/commit/d64a97ba1e099fc8033c9eea6fec14e1a71c0303"><code>d64a97b</code></a>
Ignore confusable_idents warning in test</li>
<li><a
href="https://github.com/serde-rs/serde/commit/c3df3372a18a7c0964b55bd495e52d666680a9c4"><code>c3df337</code></a>
Add test of flatten in enum</li>
<li><a
href="https://github.com/serde-rs/serde/commit/8764353fe2f52000e40db29dd42e312dfcae918e"><code>8764353</code></a>
Enable collection_is_never_read nursury lint in test</li>
<li><a
href="https://github.com/serde-rs/serde/commit/e08c5de5dd62571a5687f77d99609f9d9e60784e"><code>e08c5de</code></a>
Merge pull request <a
href="https://redirect.github.com/serde-rs/serde/issues/2785">#2785</a>
from Mingun/serialize_entry-in-flatten-newtype-variant</li>
<li><a
href="https://github.com/serde-rs/serde/commit/bc5af506bd068aa0d9b201832fab7c64652b9b13"><code>bc5af50</code></a>
Use serialize_entry instead of serialize_key + serialize_value when
serialize...</li>
<li><a
href="https://github.com/serde-rs/serde/commit/28a092261b1b47726c4c16fd00aa7de8df19785f"><code>28a0922</code></a>
Work around test suite dead code warnings in nightly-2024-07-07</li>
<li>See full diff in <a
href="https://github.com/serde-rs/serde/compare/v1.0.204...v1.0.205">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.204&new-version=1.0.205)](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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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>
  • Loading branch information
replydev authored Aug 9, 2024
2 parents 80bc109 + 74eb61f commit 7d50f04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ debug = false
strip = "symbols"

[dependencies]
serde = { version = "1.0.204", features = ["derive"] }
serde = { version = "1.0.205", features = ["derive"] }
serde_json = "1.0.122"
dirs = "5.0.1"
rpassword = "7.3.1"
Expand Down

0 comments on commit 7d50f04

Please sign in to comment.