build(deps): bump serde_with from 3.8.3 to 3.9.0
Bumps serde_with from 3.8.3 to 3.9.0.
Release notes
Sourced from serde_with's releases.
serde_with v3.9.0
Added
Deserialize a map` and skip all elements failing to deserialize by
@​johnmave126(#763)
MapSkipErroracts like a map (HashMap/BTreeMap), but keys or values that fail to deserialize, like are ignored.For formats with heterogeneously typed maps, we can collect only the elements where both key and value are deserializable. This is also useful in conjunction to
#[serde(flatten)]to ignore some entries when capturing additional fields.// JSON "value": {"0": "v0", "5": "v5", "str": "str", "10": 2},// Rust #[serde_as(as = "MapSkipError<DisplayFromStr, _>")] value: BTreeMap<u32, String>,
// Only deserializes entries with a numerical key and a string value, i.e., {0 => "v0", 5 => "v5"}
Commits
c3e489fBump version to 3.9.0 (#770)57ad877Bump version to 3.9.0d038657ImplementMapSkipError, analogous toVecSkipError, but for map-like data ...aaa0a29Update serde_with/src/guide/serde_as_transformations.md17dec11Add tests to make sure syntax errors are not suppressed.97543d0Implement MapSkipError, skipping un-deserializable entries.bf6724dMove VecSkipError to a separate file, preparing for MapSkipError31e9172Fix dead code warning by correcting a typo (#769)f5b2626Fix dead code warnings in tests4ad4a1bFix dead code warning by correcting a typo- See full diff in compare view
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 will merge this PR once CI passes on it, as requested by @mdn-bot.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
@dependabot squash and merge
Dependabot tried to merge this PR, but received the following error from GitHub:
At least 1 approving review is required by reviewers with write access.
@dependabot squash and merge
One of your CI runs failed on this pull request, so Dependabot won't merge it.
Dependabot will still automatically merge this pull request if you amend it and your tests pass.
Dependabot tried to merge this PR, but received the following error from GitHub:
At least 1 approving review is required by reviewers with write access.
@dependabot squash and merge