[PR #161] [MERGED] build(deps): bump serde from 1.0.160 to 1.0.163 #7546

Closed
opened 2026-05-23 02:55:08 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/161
Author: @dependabot[bot]
Created: 5/26/2023
Status: Merged
Merged: 5/26/2023
Merged by: @JakeStanger

Base: masterHead: dependabot/cargo/serde-1.0.163


📝 Commits (1)

  • 807a31b build(deps): bump serde from 1.0.160 to 1.0.163

📊 Changes

2 files changed (+5 additions, -5 deletions)

View changed files

📝 Cargo.lock (+4 -4)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps serde from 1.0.160 to 1.0.163.

Release notes

Sourced from serde's releases.

v1.0.163

  • Eliminate build script from serde_derive crate to slightly reduce build time (#2442, thanks @​taiki-e)

v1.0.162

  • Support deserializing flattened adjacently tagged enums from data formats which represent fields as bytes, such as the csv crate (#2377, thanks @​mfro)

    #[derive(Deserialize)]
    pub struct Record {
        common: u64,
        #[serde(flatten)]
        kind: Kind,
    }
    

    #[derive(Deserialize)] #[serde(tag = "kind", content = "parameter", rename_all = "lowercase")] enum Kind { Foo(u64), Bar(bool), }

    common,kind,parameter
    1,foo,42
    2,bar,true
    

v1.0.161

  • Improve error messages produced by serde_test on test failure (#2435, thanks @​Mingun)
Commits
  • fccb949 Release 1.0.163
  • a139ab2 Adjust PR 2446 with less overgeneralized name
  • 1d910a4 Format with rustfmt 1.5.2-nightly
  • ee9166e Revise comments on the FlatMapDeserializer entry taker
  • b5a9eff Resolve while_let_on_iterator clippy lint
  • 9441a29 Merge pull request #2446 from Mingun/dedup2
  • ab6588e Extract duplicated code into a function
  • 1d11f03 Extract logic of taking flattened fields into a function
  • e11d01f Remove constructors for FlatMapAccess and FlatStructAccess
  • a901f50 FlatMapAccess and FlatStructAccess does not need to be public
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/JakeStanger/ironbar/pull/161 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/26/2023 **Status:** ✅ Merged **Merged:** 5/26/2023 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/serde-1.0.163` --- ### 📝 Commits (1) - [`807a31b`](https://github.com/JakeStanger/ironbar/commit/807a31bf9286c612f00dc0d7a61b1a160d9787bc) build(deps): bump serde from 1.0.160 to 1.0.163 ### 📊 Changes **2 files changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+4 -4) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [serde](https://github.com/serde-rs/serde) from 1.0.160 to 1.0.163. <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.163</h2> <ul> <li>Eliminate build script from serde_derive crate to slightly reduce build time (<a href="https://redirect.github.com/serde-rs/serde/issues/2442">#2442</a>, thanks <a href="https://github.com/taiki-e"><code>@​taiki-e</code></a>)</li> </ul> <h2>v1.0.162</h2> <ul> <li> <p>Support deserializing flattened adjacently tagged enums from data formats which represent fields as bytes, such as the <code>csv</code> crate (<a href="https://redirect.github.com/serde-rs/serde/issues/2377">#2377</a>, thanks <a href="https://github.com/mfro"><code>@​mfro</code></a>)</p> <pre lang="rust"><code>#[derive(Deserialize)] pub struct Record { common: u64, #[serde(flatten)] kind: Kind, } <p>#[derive(Deserialize)] #[serde(tag = &quot;kind&quot;, content = &quot;parameter&quot;, rename_all = &quot;lowercase&quot;)] enum Kind { Foo(u64), Bar(bool), } </code></pre></p> <pre lang="csv"><code>common,kind,parameter 1,foo,42 2,bar,true </code></pre> </li> </ul> <h2>v1.0.161</h2> <ul> <li>Improve error messages produced by serde_test on test failure (<a href="https://redirect.github.com/serde-rs/serde/issues/2435">#2435</a>, thanks <a href="https://github.com/Mingun"><code>@​Mingun</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/serde/commit/fccb9499bccbaca0b7eef91a3a82dfcb31e0b149"><code>fccb949</code></a> Release 1.0.163</li> <li><a href="https://github.com/serde-rs/serde/commit/a139ab2572bfb7ab9e9382d6864d895a75f916a0"><code>a139ab2</code></a> Adjust PR 2446 with less overgeneralized name</li> <li><a href="https://github.com/serde-rs/serde/commit/1d910a484c2a888f35b05c1415cb341326c65bc4"><code>1d910a4</code></a> Format with rustfmt 1.5.2-nightly</li> <li><a href="https://github.com/serde-rs/serde/commit/ee9166ec97074c4752e4f75dd846b1dfaac227d4"><code>ee9166e</code></a> Revise comments on the FlatMapDeserializer entry taker</li> <li><a href="https://github.com/serde-rs/serde/commit/b5a9eff32e041e531ff2c4a0764be076c679de54"><code>b5a9eff</code></a> Resolve while_let_on_iterator clippy lint</li> <li><a href="https://github.com/serde-rs/serde/commit/9441a2966341962151c923273b6a36f2908aec93"><code>9441a29</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2446">#2446</a> from Mingun/dedup2</li> <li><a href="https://github.com/serde-rs/serde/commit/ab6588ef7413257d769778720e4fc43bea2fbf76"><code>ab6588e</code></a> Extract duplicated code into a function</li> <li><a href="https://github.com/serde-rs/serde/commit/1d11f03449be82e9422128b21267338b708b34fc"><code>1d11f03</code></a> Extract logic of taking flattened fields into a function</li> <li><a href="https://github.com/serde-rs/serde/commit/e11d01fe1d4db936a1058a484f7c854326271fb2"><code>e11d01f</code></a> Remove constructors for FlatMapAccess and FlatStructAccess</li> <li><a href="https://github.com/serde-rs/serde/commit/a901f50850d22133c01921d74247cd946fd50a7b"><code>a901f50</code></a> FlatMapAccess and FlatStructAccess does not need to be public</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/serde/compare/v1.0.160...v1.0.163">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.160&new-version=1.0.163)](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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
JakeStanger 2026-05-23 02:55:08 +01:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JakeStanger/ironbar#7546
No description provided.