Auto merge of #28941 - servo:dependabot/cargo/crossbeam-epoch-0.9.10, r=jdm

Bump crossbeam-epoch from 0.9.8 to 0.9.10

Bumps [crossbeam-epoch](https://github.com/crossbeam-rs/crossbeam) from 0.9.8 to 0.9.10.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/crossbeam-rs/crossbeam/releases">crossbeam-epoch's releases</a>.</em></p>
<blockquote>
<h2>crossbeam-epoch 0.9.10</h2>
<ul>
<li>Bump the minimum supported Rust version to 1.38. (<a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/877">#877</a>)</li>
<li>Mitigate the risk of segmentation faults in buggy downstream implementations. (<a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/879">#879</a>)</li>
<li>Add <code>{Atomic, Shared}::try_into_owned</code> (<a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/701">#701</a>)</li>
</ul>
<h2>crossbeam-epoch 0.9.9</h2>
<ul>
<li>Replace lazy_static with once_cell. (<a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/817">#817</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="5e0f59a999"><code>5e0f59a</code></a> Merge <a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/880">#880</a></li>
<li><a href="0f4092bd1d"><code>0f4092b</code></a> Prepare for the next release</li>
<li><a href="6dc9be5a5c"><code>6dc9be5</code></a> Merge <a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/879">#879</a></li>
<li><a href="f2ca66bad5"><code>f2ca66b</code></a> epoch: Adjust MAX_OBJECTS</li>
<li><a href="c059aec7d1"><code>c059aec</code></a> Merge <a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/877">#877</a></li>
<li><a href="6ac123243e"><code>6ac1232</code></a> Favor <code>.cast()</code> over <code>as</code></li>
<li><a href="b553b4fd44"><code>b553b4f</code></a> Use const_in_array_repeat_expressions</li>
<li><a href="0e1497108c"><code>0e14971</code></a> Bump MSRV to Rust 1.38</li>
<li><a href="99b14b1500"><code>99b14b1</code></a> Merge <a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/875">#875</a> <a href="https://github-redirect.dependabot.com/crossbeam-rs/crossbeam/issues/876">#876</a></li>
<li><a href="371de8c2d3"><code>371de8c</code></a> Miri: Fix thread leaks in doctests in utils</li>
<li>Additional commits viewable in <a href="https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-epoch-0.9.8...crossbeam-epoch-0.9.10">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crossbeam-epoch&package-manager=cargo&previous-version=0.9.8&new-version=0.9.10)](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-08-19 23:46:46 -04:00 committed by GitHub
commit 60ddc19435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Cargo.lock generated
View file

@ -1164,15 +1164,15 @@ dependencies = [
[[package]]
name = "crossbeam-epoch"
version = "0.9.8"
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
dependencies = [
"autocfg",
"cfg-if 1.0.0",
"crossbeam-utils 0.8.8",
"lazy_static",
"memoffset",
"once_cell",
"scopeguard",
]