Auto merge of #26617 - servo:dependabot/cargo/socket2-0.3.12, r=jdm

Bump socket2 from 0.3.5 to 0.3.12

Bumps [socket2](https://github.com/alexcrichton/socket2-rs) from 0.3.5 to 0.3.12.
<details>
<summary>Commits</summary>
<ul>
<li><a href="c22d0e55c4"><code>c22d0e5</code></a> Bump to 0.3.12</li>
<li><a href="4206876f23"><code>4206876</code></a> Implement fmt::Debug for Domain, Protocol and Type (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/63">#63</a>)</li>
<li><a href="1d66f9fb57"><code>1d66f9f</code></a> Move Protocol impl to src/lib.rs (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/61">#61</a>)</li>
<li><a href="8cf72802a1"><code>8cf7280</code></a> Move socket and SocketAddr (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/62">#62</a>)</li>
<li><a href="7dd551fe8e"><code>7dd551f</code></a> Always use C's int type (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/60">#60</a>)</li>
<li><a href="085762e090"><code>085762e</code></a> Move Type impl where its defined (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/59">#59</a>)</li>
<li><a href="3de176f2c8"><code>3de176f</code></a> Move Domain (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/57">#57</a>)</li>
<li><a href="536121a6e0"><code>536121a</code></a> Replace mem::uninitialized with MaybeUninit (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/55">#55</a>)</li>
<li><a href="850ad9078f"><code>850ad90</code></a> Use Once::new on Windows (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/58">#58</a>)</li>
<li><a href="230d413459"><code>230d413</code></a> Add support for illumos target (<a href="https://github-redirect.dependabot.com/alexcrichton/socket2-rs/issues/54">#54</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/alexcrichton/socket2-rs/compare/0.3.5...0.3.12">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=socket2&package-manager=cargo&previous-version=0.3.5&new-version=0.3.12)](https://dependabot.com/compatibility-score/?dependency-name=socket2&package-manager=cargo&previous-version=0.3.5&new-version=0.3.12)

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)
- `@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)
- 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)

</details>
This commit is contained in:
bors-servo 2020-05-22 15:02:33 -04:00 committed by GitHub
commit 84abcf9429
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Cargo.lock generated
View file

@ -5439,12 +5439,13 @@ dependencies = [
[[package]]
name = "socket2"
version = "0.3.5"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff606e0486e88f5fc6cfeb3966e434fb409abbc7a3ab495238f70a1ca97f789d"
checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"winapi",
]