Auto merge of #28815 - servo:dependabot/cargo/async-stream-0.3.3, r=jdm

Bump async-stream from 0.3.2 to 0.3.3

Bumps [async-stream](https://github.com/tokio-rs/async-stream) from 0.3.2 to 0.3.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/tokio-rs/async-stream/releases">async-stream's releases</a>.</em></p>
<blockquote>
<h2>v0.3.3</h2>
<ul>
<li>Fix a bug where <code>yield</code> and <code>?</code> cannot be used on the same line (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/66">#66</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="e1373e4ded"><code>e1373e4</code></a> Prepare v0.3.3 release (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/70">#70</a>)</li>
<li><a href="e158fdc198"><code>e158fdc</code></a> Create GitHub release automatically (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/69">#69</a>)</li>
<li><a href="e1a6ae61d0"><code>e1a6ae6</code></a> Transform the inner expression of yield expressions (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/66">#66</a>)</li>
<li><a href="cb8a508ed3"><code>cb8a508</code></a> Fix CI failure (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/67">#67</a>)</li>
<li><a href="8bf33a6d2c"><code>8bf33a6</code></a> Clean up CI config (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/61">#61</a>)</li>
<li><a href="14acb0272e"><code>14acb02</code></a> Remove dependency on <code>syn/extra-traits</code> feature (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/59">#59</a>)</li>
<li>See full diff in <a href="https://github.com/tokio-rs/async-stream/compare/v0.3.2...v0.3.3">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-stream&package-manager=cargo&previous-version=0.3.2&new-version=0.3.3)](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>
This commit is contained in:
bors-servo 2022-04-07 11:10:38 -04:00 committed by GitHub
commit fef7e06275
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Cargo.lock generated
View file

@ -179,9 +179,9 @@ dependencies = [
[[package]]
name = "async-stream"
version = "0.3.2"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "171374e7e3b2504e0e5236e3b59260560f9fe94bfe9ac39ba5e4e929c5590625"
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
dependencies = [
"async-stream-impl",
"futures-core",
@ -189,9 +189,9 @@ dependencies = [
[[package]]
name = "async-stream-impl"
version = "0.3.2"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "648ed8c8d2ce5409ccd57453d9d1b214b342a0d69376a6feda1fd6cae3299308"
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
dependencies = [
"proc-macro2",
"quote",