Release notes
*Sourced from [serde's releases](https://github.com/serde-rs/serde/releases).*
> ## v1.0.88
> - Support `flatten` and `skip_serializing` / `skip_deserializing` attributes on the same field
>
> ## v1.0.87
> - Fix inclusion of tag in struct containing flattened fields ([#1468](https://github-redirect.dependabot.com/serde-rs/serde/issues/1468), thanks [@jwillbold](https://github.com/jwillbold))
>
> ## v1.0.86
> - Implement Serialize and Deserialize for core::ops::Bound\ ([#1466](https://github-redirect.dependabot.com/serde-rs/serde/issues/1466), thanks [@0nkery](https://github.com/0nkery))
>
> ## v1.0.85
> - Accept `#[serde(alias = "...")]` attribute on fields and variants which allows the same field or variant to be deserialized from any of multiple different names in the input ([#1458](https://github-redirect.dependabot.com/serde-rs/serde/issues/1458), thanks [@Lymia](https://github.com/Lymia))
>
> ```rust
> #[derive(Deserialize)]
> struct S {
> #[serde(alias = "old_name")]
> new_name: String, // will deserialize from either of "old_name" or "new_name"
> }
> ```
>
> ## v1.0.84
> - Update example code in documentation to 2018 edition
>
> ## v1.0.83
> - Support a `rename_all` specification that applies only to the Serialize impl or only to the Deserialize impl ([#1447](https://github-redirect.dependabot.com/serde-rs/serde/issues/1447), thanks [@vincascm](https://github.com/vincascm))
>
> ```rust
> #[derive(Serialize, Deserialize)]
> #[serde(rename_all(
> serialize = "camelCase",
> deserialize = "SCREAMING_SNAKE_CASE",
> ))]
> struct S { /* ... */ }
> ```
>
> - Allow serializing struct name inside of structs with named fields ([#1448](https://github-redirect.dependabot.com/serde-rs/serde/issues/1448), thanks [@motu42](https://github.com/motu42))
>
> ```rust
> #[derive(Serialize)]
> #[serde(tag = "type")]
> struct S { /* ... */ } // serializes as {"type":"S",...}
> ```
>
> ## v1.0.82
> - Support `serde(default)` attribute inside of tuple structs and tuple variants ([#1442](https://github-redirect.dependabot.com/serde-rs/serde/issues/1442), thanks [@tcr](https://github.com/tcr))
>
> ## v1.0.81
> - Better error messages when using an invalid combination of serde attributes ([#1424](https://github-redirect.dependabot.com/serde-rs/serde/issues/1424), thanks [@hcpl](https://github.com/hcpl))
> - Support deserializing tagged enums inside of untagged enums in formats that encode tagged enum variants by index, like MessagePack ([#1437](https://github-redirect.dependabot.com/serde-rs/serde/issues/1437), thanks [@daboross](https://github.com/daboross))
>
> ... (truncated)
Commits
- [`64c483c`](https://github.com/serde-rs/serde/commit/64c483cf80c83fcbf2308d1194e855f11c9fb28d) Release 1.0.88
- [`19091aa`](https://github.com/serde-rs/serde/commit/19091aacc786b2a743cd43e7dc2000568d2ecb65) Fix mistaken double negative in flatten error message
- [`ef9028d`](https://github.com/serde-rs/serde/commit/ef9028d798e0d6e146d8435350e3ae6b7ccf57cb) Remove conflict between flatten and skip
- [`1668cd1`](https://github.com/serde-rs/serde/commit/1668cd19d3efef7c4c64431e7af2b109b020d60c) Eliminate try!(..).value to improve rustfmt'd code
- [`134f268`](https://github.com/serde-rs/serde/commit/134f268ceeafdb3d0616db6b935e2da34e74bbb3) Release 1.0.87
- [`c473633`](https://github.com/serde-rs/serde/commit/c4736336768a6a3ac82f909a311bd9512ab49589) Format with rustfmt 2018-12-10
- [`6a3a820`](https://github.com/serde-rs/serde/commit/6a3a82007cda462251d49b7b18cddf33dfce68dc) Merge pull request [#1474](https://github-redirect.dependabot.com/serde-rs/serde/issues/1474) from jwillbold/master
- [`1d6ef76`](https://github.com/serde-rs/serde/commit/1d6ef76cfb339df48232b59cc2ce8568fd19660c) Fixed [#1468](https://github-redirect.dependabot.com/serde-rs/serde/issues/1468), flattened struct fields made structs ignore their tag
- [`c8e3959`](https://github.com/serde-rs/serde/commit/c8e39594357bdecb9dfee889dbdfced735033469) Release 1.0.86
- [`796f412`](https://github.com/serde-rs/serde/commit/796f412a1e83ffed2b37ccbcaf55fba5ee99b916) Document that Bound impls exist
- Additional commits viewable in [compare view](https://github.com/serde-rs/serde/compare/v1.0.79...v1.0.88)
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
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps serde from 1.0.79 to 1.0.88.
Release notes
*Sourced from [serde's releases](https://github.com/serde-rs/serde/releases).* > ## v1.0.88 > - Support `flatten` and `skip_serializing` / `skip_deserializing` attributes on the same field > > ## v1.0.87 > - Fix inclusion of tag in struct containing flattened fields ([#1468](https://github-redirect.dependabot.com/serde-rs/serde/issues/1468), thanks [@jwillbold](https://github.com/jwillbold)) > > ## v1.0.86 > - Implement Serialize and Deserialize for core::ops::Bound\Commits
- [`64c483c`](https://github.com/serde-rs/serde/commit/64c483cf80c83fcbf2308d1194e855f11c9fb28d) Release 1.0.88 - [`19091aa`](https://github.com/serde-rs/serde/commit/19091aacc786b2a743cd43e7dc2000568d2ecb65) Fix mistaken double negative in flatten error message - [`ef9028d`](https://github.com/serde-rs/serde/commit/ef9028d798e0d6e146d8435350e3ae6b7ccf57cb) Remove conflict between flatten and skip - [`1668cd1`](https://github.com/serde-rs/serde/commit/1668cd19d3efef7c4c64431e7af2b109b020d60c) Eliminate try!(..).value to improve rustfmt'd code - [`134f268`](https://github.com/serde-rs/serde/commit/134f268ceeafdb3d0616db6b935e2da34e74bbb3) Release 1.0.87 - [`c473633`](https://github.com/serde-rs/serde/commit/c4736336768a6a3ac82f909a311bd9512ab49589) Format with rustfmt 2018-12-10 - [`6a3a820`](https://github.com/serde-rs/serde/commit/6a3a82007cda462251d49b7b18cddf33dfce68dc) Merge pull request [#1474](https://github-redirect.dependabot.com/serde-rs/serde/issues/1474) from jwillbold/master - [`1d6ef76`](https://github.com/serde-rs/serde/commit/1d6ef76cfb339df48232b59cc2ce8568fd19660c) Fixed [#1468](https://github-redirect.dependabot.com/serde-rs/serde/issues/1468), flattened struct fields made structs ignore their tag - [`c8e3959`](https://github.com/serde-rs/serde/commit/c8e39594357bdecb9dfee889dbdfced735033469) Release 1.0.86 - [`796f412`](https://github.com/serde-rs/serde/commit/796f412a1e83ffed2b37ccbcaf55fba5ee99b916) Document that BoundDependabot 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 - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.