mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Merge #1372
1372: build(deps): bump serde from 1.0.160 to 1.0.162 r=delta1 a=dependabot[bot] Bumps [serde](https://github.com/serde-rs/serde) from 1.0.160 to 1.0.162. <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>1.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 = "kind", content = "parameter", rename_all = "lowercase")] 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="99f165b45a
"><code>99f165b</code></a> Release 1.0.162</li> <li><a href="2fb5560746
"><code>2fb5560</code></a> Attempt to generate just one copy of TagContentOtherFieldVisitor's field matc...</li> <li><a href="bd653ab30c
"><code>bd653ab</code></a> Format PR 2377 with rustfmt</li> <li><a href="b5d68aedaa
"><code>b5d68ae</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2377">#2377</a> from mfro/master</li> <li><a href="624879c4c6
"><code>624879c</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/serde/issues/2441">#2441</a> from dtolnay/test</li> <li><a href="bd9e9abf35
"><code>bd9e9ab</code></a> Reimplement tests that touched serde_test internal API</li> <li><a href="3e4a23cbd0
"><code>3e4a23c</code></a> Release 1.0.161</li> <li><a href="6326ceec3f
"><code>6326cee</code></a> Don't panic in serde_test on running out of tokens</li> <li><a href="8f4d37c7ec
"><code>8f4d37c</code></a> Convert serde_test's assert_next_token from macro to function</li> <li><a href="1b8290b318
"><code>1b8290b</code></a> Convert serde_test's unexpected from macro to function</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/serde/compare/v1.0.160...1.0.162">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.162)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
commit
d45ce999a0
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -3572,9 +3572,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "1.0.160"
|
||||
version = "1.0.162"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
|
||||
checksum = "71b2f6e1ab5c2b98c05f0f35b236b22e8df7ead6ffbf51d7808da7f8817e7ab6"
|
||||
dependencies = [
|
||||
"serde_derive",
|
||||
]
|
||||
@ -3601,9 +3601,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "serde_derive"
|
||||
version = "1.0.160"
|
||||
version = "1.0.162"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
|
||||
checksum = "a2a0814352fd64b58489904a44ea8d90cb1a91dcb6b4f5ebabc32c8318e93cb6"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
Loading…
Reference in New Issue
Block a user