gnzlbg / cargo-asm

cargo subcommand showing the assembly or llvm-ir generated for Rust code
https://github.com/gnzlbg/cargo-asm
Other
1.19k stars 37 forks source link

Bump serde from 1.0.80 to 1.0.87 #88

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps serde from 1.0.80 to 1.0.87.

Release notes *Sourced from [serde's releases](https://github.com/serde-rs/serde/releases).* > ## 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))
Commits - [`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 - [`fa854a2`](https://github.com/serde-rs/serde/commit/fa854a21083b06f509c537190550555e5473644f) Format with rustfmt 2018-12-10 - [`3a097ff`](https://github.com/serde-rs/serde/commit/3a097ff2d2bf0bccb5b2249d993c6d5b4a9e2adf) Deserialize Bound::Unbounded as unit variant - [`8463bfc`](https://github.com/serde-rs/serde/commit/8463bfc1e5adb23abb089dddc0a54d1c802e0d16) Remove as yet unrequested range impls - [`7a72b4c`](https://github.com/serde-rs/serde/commit/7a72b4c624eb36397d504f7f381d0b0d25ca3f21) Merge pull request [#1466](https://github-redirect.dependabot.com/serde-rs/serde/issues/1466) from 0nkery/master - Additional commits viewable in [compare view](https://github.com/serde-rs/serde/compare/v1.0.80...v1.0.87)


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 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.