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

Bump async-stream from 0.3.3 to 0.3.4

Bumps [async-stream](https://github.com/tokio-rs/async-stream) from 0.3.3 to 0.3.4.
<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.4</h2>
<ul>
<li>Improve support for <code>#[track_caller]</code> (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/72">#72</a>)</li>
<li>Reduce unsafe code (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/77">#77</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="bf41b9645f"><code>bf41b96</code></a> Prepare v0.3.4 release (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/92">#92</a>)</li>
<li><a href="c0fcab7f4c"><code>c0fcab7</code></a> Fix doc wording (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/91">#91</a>)</li>
<li><a href="e1d440fbce"><code>e1d440f</code></a> Move doc(hidden) items to __private module and make yielder::pair unsafe (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/84">#84</a>)</li>
<li><a href="ac3fa6b556"><code>ac3fa6b</code></a> Update ui test output to Rust 1.65.0 (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/82">#82</a>)</li>
<li><a href="5a4df04b0f"><code>5a4df04</code></a> Remove msrv field from .clippy.toml (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/80">#80</a>)</li>
<li><a href="1be3b52cf4"><code>1be3b52</code></a> Update ui test output for 1.64 (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/79">#79</a>)</li>
<li><a href="9174136234"><code>9174136</code></a> Fix CI failure (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/78">#78</a>)</li>
<li><a href="d48ec2c10d"><code>d48ec2c</code></a> Reduce <code>unsafe</code> usage (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/77">#77</a>)</li>
<li><a href="81bfb05706"><code>81bfb05</code></a> Fix small typo (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/73">#73</a>)</li>
<li><a href="6b2725f174"><code>6b2725f</code></a> Preserve spans in macro invocations (<a href="https://github-redirect.dependabot.com/tokio-rs/async-stream/issues/72">#72</a>)</li>
<li>See full diff in <a href="https://github.com/tokio-rs/async-stream/compare/v0.3.3...v0.3.4">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.3&new-version=0.3.4)](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 2023-02-20 20:19:56 +01:00 committed by GitHub
commit 883dcbda45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
Cargo.lock generated
View file

@ -173,19 +173,20 @@ dependencies = [
[[package]]
name = "async-stream"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
checksum = "ad445822218ce64be7a341abfb0b1ea43b5c23aa83902542a4542e78309d8e5e"
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite 0.2.8",
]
[[package]]
name = "async-stream-impl"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965"
dependencies = [
"proc-macro2",
"quote",