Bump url from 2.1.1 to 2.2.0
Bumps [url](https://github.com/servo/rust-url) from 2.1.1 to 2.2.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="1182d5d5b9"><code>1182d5d</code></a> Fix readme path</li>
<li><a href="fcf40eae55"><code>fcf40ea</code></a> Update toml to list bench path</li>
<li><a href="82ee0bd3cd"><code>82ee0bd</code></a> Bump url crate version to 2.2.0</li>
<li><a href="a46bec6e54"><code>a46bec6</code></a> chore: silence false positive clippy warning</li>
<li><a href="37460b4ab7"><code>37460b4</code></a> idna: deduplicate punycode test assertions</li>
<li><a href="b665da1b24"><code>b665da1</code></a> chore: pacify clippy some more</li>
<li><a href="9d8a8c5103"><code>9d8a8c5</code></a> chore: fix CI failures from clippy/MSRV</li>
<li><a href="bbfb2c0c79"><code>bbfb2c0</code></a> url: tweak code order in test module</li>
<li><a href="595624961f"><code>5956249</code></a> url: replace use of macros in data-driven tests</li>
<li><a href="c9ed907ed1"><code>c9ed907</code></a> url: remove usage of custom test framework</li>
<li>Additional commits viewable in <a href="https://github.com/servo/rust-url/compare/v2.1.1...v2.2.0">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=url&package-manager=cargo&previous-version=2.1.1&new-version=2.2.0)
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>
Bump regex from 1.3.9 to 1.4.2
Bumps [regex](https://github.com/rust-lang/regex) from 1.3.9 to 1.4.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p>
<blockquote>
<h1>1.4.2 (2020-11-01)</h1>
<p>This is a small bug fix release that bans <code>\P{any}</code>. We previously banned empty
classes like <code>[^\w\W]</code>, but missed the <code>\P{any}</code> case. In the future, we hope
to permit empty classes.</p>
<ul>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/722">#722</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/722">rust-lang/regex#722</a>):
Ban <code>\P{any}</code> to avoid a panic in the regex compiler. Found by OSS-Fuzz.</li>
</ul>
<h1>1.4.1 (2020-10-13)</h1>
<p>This is a small bug fix release that makes <code>\p{cf}</code> work. Previously, it would
report "property not found" even though <code>cf</code> is a valid abbreviation for the
<code>Format</code> general category.</p>
<ul>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/719">#719</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/719">rust-lang/regex#719</a>):
Fixes bug that prevented <code>\p{cf}</code> from working.</li>
</ul>
<h1>1.4.0 (2020-10-11)</h1>
<p>This releases has a few minor documentation fixes as well as some very minor
API additions. The MSRV remains at Rust 1.28 for now, but this is intended to
increase to at least Rust 1.41.1 soon.</p>
<p>This release also adds support for OSS-Fuzz. Kudos to
<a href="https://github.com/DavidKorczynski">@DavidKorczynski</a>
for doing the heavy lifting for that!</p>
<p>New features:</p>
<ul>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/649">#649</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/649">rust-lang/regex#649</a>):
Support <code>[</code>, <code>]</code> and <code>.</code> in capture group names.</li>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/687">#687</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/687">rust-lang/regex#687</a>):
Add <code>is_empty</code> predicate to <code>RegexSet</code>.</li>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/689">#689</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/689">rust-lang/regex#689</a>):
Implement <code>Clone</code> for <code>SubCaptureMatches</code>.</li>
<li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/715">#715</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/715">rust-lang/regex#715</a>):
Add <code>empty</code> constructor to <code>RegexSet</code> for convenience.</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/694">#694</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/694">rust-lang/regex#694</a>):
Fix doc example for <code>Replacer::replace_append</code>.</li>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/698">#698</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/698">rust-lang/regex#698</a>):
Clarify docs for <code>s</code> flag when using a <code>bytes::Regex</code>.</li>
<li>[BUG <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/711">#711</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/711">rust-lang/regex#711</a>):
Clarify <code>is_match</code> docs to indicate that it can match anywhere in string.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="3bcae3b695"><code>3bcae3b</code></a> 1.4.2</li>
<li><a href="d65845181d"><code>d658451</code></a> changelog: 1.4.2</li>
<li><a href="8cb337a0a1"><code>8cb337a</code></a> deps: bump regex-syntax to 0.6.21</li>
<li><a href="d03ae186b5"><code>d03ae18</code></a> regex-syntax-0.6.21</li>
<li><a href="6fdb6e123c"><code>6fdb6e1</code></a> syntax: forbid \P{any}</li>
<li><a href="a7ef5f452e"><code>a7ef5f4</code></a> fuzz: fix release profile</li>
<li><a href="44abc5f7c6"><code>44abc5f</code></a> fuzz: enable optimizations in other profiles</li>
<li><a href="9067dfd7e1"><code>9067dfd</code></a> fuzz: compile fuzzer in release mode</li>
<li><a href="d5bf98f293"><code>d5bf98f</code></a> 1.4.1</li>
<li><a href="1aa1e476de"><code>1aa1e47</code></a> deps: bump regex-syntax minimum version to 0.6.20</li>
<li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.3.9...1.4.2">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=regex&package-manager=cargo&previous-version=1.3.9&new-version=1.4.2)
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>
Bump instant from 0.1.6 to 0.1.9
Bumps [instant](https://github.com/sebcrozet/instant) from 0.1.6 to 0.1.9.
<details>
<summary>Commits</summary>
<ul>
<li><a href="eff71cffcc"><code>eff71cf</code></a> Release v0.1.9</li>
<li><a href="c023a97039"><code>c023a97</code></a> Add inaccurate time option</li>
<li><a href="3819881b22"><code>3819881</code></a> Release v0.1.8</li>
<li><a href="5bfaad2835"><code>5bfaad2</code></a> Update to cfg-if 1.0</li>
<li><a href="96feb8a208"><code>96feb8a</code></a> Release v0.1.7</li>
<li><a href="024d577393"><code>024d577</code></a> Remove unused function</li>
<li><a href="3b45cb8b31"><code>3b45cb8</code></a> Add back use Duration</li>
<li><a href="347631608c"><code>3476316</code></a> Use cfg-if for cfgs in wasm</li>
<li><a href="5c5f6519db"><code>5c5f651</code></a> Fix for wasm32-wasi target</li>
<li>See full diff in <a href="https://github.com/sebcrozet/instant/compare/v0.1.6...v0.1.9">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=instant&package-manager=cargo&previous-version=0.1.6&new-version=0.1.9)
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>
Update servo.icns icon
<!-- Please describe your changes on the following line: -->
Update .icns icon file. I do not have a Mac so I would appreciate if someone who has one could test this out and make sure it actually fixes the issue.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [x] These changes fix#27775
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Fix typo in gstplugin readme.md
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because __just change plain text_
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Bump encoding_rs from 0.8.23 to 0.8.26
Bumps [encoding_rs](https://github.com/hsivonen/encoding_rs) from 0.8.23 to 0.8.26.
<details>
<summary>Commits</summary>
<ul>
<li><a href="1b026d491d"><code>1b026d4</code></a> Increment version number to 0.8.26.</li>
<li><a href="def44a4b34"><code>def44a4</code></a> Run cargo fmt.</li>
<li><a href="00dac8993d"><code>00dac89</code></a> Remove unused label.</li>
<li><a href="d37917f971"><code>d37917f</code></a> Fix failures in edition 2018 migration when simd-accel is enabled.</li>
<li><a href="3dbf4d1814"><code>3dbf4d1</code></a> Increment version number to 0.8.25.</li>
<li><a href="179c5d124d"><code>179c5d1</code></a> Update to edition 2018.</li>
<li><a href="54137e21d0"><code>54137e2</code></a> Update MSRV documentation.</li>
<li><a href="fe031de987"><code>fe031de</code></a> Remove warnings about unused loop labels</li>
<li><a href="97261b5516"><code>97261b5</code></a> Use MaybeUninit instead of mem::uninitialized</li>
<li><a href="79347dc0ee"><code>79347dc</code></a> Fix 'range patterns are deprecated' warning</li>
<li>Additional commits viewable in <a href="https://github.com/hsivonen/encoding_rs/compare/v0.8.23...v0.8.26">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=encoding_rs&package-manager=cargo&previous-version=0.8.23&new-version=0.8.26)
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>
Bump indexmap from 1.5.0 to 1.6.0
Bumps [indexmap](https://github.com/bluss/indexmap) from 1.5.0 to 1.6.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="008e543d9a"><code>008e543</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/bluss/indexmap/issues/152">#152</a> from mbrubeck/deps</li>
<li><a href="083f5a762c"><code>083f5a7</code></a> Version 1.6.0</li>
<li><a href="b0006936b1"><code>b000693</code></a> Update to hashbrown 0.9</li>
<li><a href="e53a6c0317"><code>e53a6c0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/bluss/indexmap/issues/145">#145</a> from cuviper/explicit-std</li>
<li><a href="4de0dcf4b4"><code>4de0dcf</code></a> Release 1.5.2</li>
<li><a href="ef0adaf4b4"><code>ef0adaf</code></a> Add a feature to explicitly enable "std"</li>
<li><a href="132814cc9c"><code>132814c</code></a> Set 2018 edition in .rustfmt.toml</li>
<li><a href="622dd20631"><code>622dd20</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/bluss/indexmap/issues/149">#149</a> from cuviper/test-chaining</li>
<li><a href="123a35112f"><code>123a351</code></a> ci: make sure test commands are <code>&&</code>-chained</li>
<li><a href="351f6adb2f"><code>351f6ad</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/bluss/indexmap/issues/146">#146</a> from cuviper/release-1.5.1</li>
<li>Additional commits viewable in <a href="https://github.com/bluss/indexmap/compare/1.5.0...1.6.0">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=indexmap&package-manager=cargo&previous-version=1.5.0&new-version=1.6.0)
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>
Update past yanked crate.
crossbeam-channel 0.4.3 was yanked in October and 0.4.4 includes https://github.com/crossbeam-rs/crossbeam/pull/533.
---
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] There are tests for these changes
Bump ppv-lite86 from 0.2.8 to 0.2.10
Bumps [ppv-lite86](https://github.com/cryptocorrosion/cryptocorrosion) from 0.2.8 to 0.2.10.
<details>
<summary>Commits</summary>
<ul>
<li><a href="3012849c2d"><code>3012849</code></a> release new versions</li>
<li><a href="9213f7eb1f"><code>9213f7e</code></a> Migrate to new cipher crate</li>
<li><a href="1eb8f4b687"><code>1eb8f4b</code></a> eliminate clippy warnings</li>
<li><a href="9f2a3c9a4c"><code>9f2a3c9</code></a> fmt</li>
<li><a href="0dec28b9d0"><code>0dec28b</code></a> eliminate build warnings</li>
<li><a href="96bb212bd1"><code>96bb212</code></a> remove broken function</li>
<li><a href="e42d7188d5"><code>e42d718</code></a> c2-chacha: Migrate to stream-cipher 0.7</li>
<li><a href="c622fec5ab"><code>c622fec</code></a> threefish-cipher: Migrate to block-cipher 0.8</li>
<li><a href="ede56cee70"><code>ede56ce</code></a> c2-chacha: Migrate to stream-cipher 0.6</li>
<li><a href="d84373e793"><code>d84373e</code></a> Remove unnecessary GenericArray::as_mut_slice calls</li>
<li>Additional commits viewable in <a href="https://github.com/cryptocorrosion/cryptocorrosion/compare/ppv-lite86-0.2.8...ppv-lite86-0.2.10">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=ppv-lite86&package-manager=cargo&previous-version=0.2.8&new-version=0.2.10)
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>
Bump syn from 1.0.38 to 1.0.48
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.38 to 1.0.48.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dtolnay/syn/releases">syn's releases</a>.</em></p>
<blockquote>
<h2>1.0.46</h2>
<ul>
<li>Fix parsing structured attributes that contain nested absolute paths, such as <code>#[derive(::serde::Serialize)]</code> (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/909">#909</a>)</li>
</ul>
<h2>1.0.45</h2>
<ul>
<li>Provide more detailed error messages when parsing specific literal kind (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/908">#908</a>)</li>
</ul>
<h2>1.0.44</h2>
<ul>
<li>Fix some parsing of patterns inside of None-delimited groups (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/907">#907</a>)</li>
</ul>
<h2>1.0.43</h2>
<ul>
<li>Add Parse impl for syn::Signature</li>
</ul>
<h2>1.0.42</h2>
<ul>
<li>Fix several bugs involving unusual suffixes on integer and floating point literal tokens (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/898">#898</a>, <a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/899">#899</a>, <a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/900">#900</a>)</li>
</ul>
<h2>1.0.41</h2>
<ul>
<li>Fix panic on printing an incomplete (having fewer path segments than originally parsed with) qualified path (ExprPath, PatPath, TypePath containing QSelf) (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/891">#891</a>, thanks <a href="https://github.com/taiki-e">@taiki-e</a>)</li>
<li>Fix panic triggered by syntactically invalid overflowing negative float literal after <code>.</code> in a field access position, e.g. <code>let _ = obj.-0.9E999999</code> (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/895">#895</a>, thanks <a href="https://github.com/sameer">@sameer</a>)</li>
<li>Enable using <code>parse_macro_input!</code> with a Parser function rather than type having a Parse impl (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/896">#896</a>, thanks <a href="https://github.com/sbrocket">@sbrocket</a>)</li>
</ul>
<h2>1.0.40</h2>
<ul>
<li>Fix panic on parsing float literals having both an exponent and a suffix beginning with 'e' or 'E', such as <code>9e99e999</code> (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/893">#893</a>)</li>
</ul>
<h2>1.0.39</h2>
<ul>
<li>Improve compile time by pre-expanding derives (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/885">#885</a>)</li>
<li>Parse const generic parameters in any order relative to type parameters (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/886">#886</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="1c8ec79538"><code>1c8ec79</code></a> Release 1.0.48</li>
<li><a href="b7953dfafc"><code>b7953df</code></a> Release 1.0.47</li>
<li><a href="301a74eae7"><code>301a74e</code></a> Unpin crossbeam-utils since they released fix</li>
<li><a href="8f0dbd5050"><code>8f0dbd5</code></a> Update syn-internal-codegen deps</li>
<li><a href="45acd3ad3a"><code>45acd3a</code></a> Set html_root_url for syn-codegen crate</li>
<li><a href="39ee8cc188"><code>39ee8cc</code></a> Release syn-codegen 0.2.0</li>
<li><a href="ab2c642edd"><code>ab2c642</code></a> Update syn-codegen to semver 0.11</li>
<li><a href="f1f86306dc"><code>f1f8630</code></a> Expand wildcard import</li>
<li><a href="ce86fcecf3"><code>ce86fce</code></a> Format syn-internal-codegen with rustfmt 1.4.22-nightly</li>
<li><a href="2804a84e0f"><code>2804a84</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/912">#912</a> from dtolnay/tokendoc</li>
<li>Additional commits viewable in <a href="https://github.com/dtolnay/syn/compare/1.0.38...1.0.48">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=syn&package-manager=cargo&previous-version=1.0.38&new-version=1.0.48)
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>
Bump spirv_headers from 1.4.2 to 1.5.0
Bumps [spirv_headers](https://github.com/gfx-rs/rspirv) from 1.4.2 to 1.5.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/gfx-rs/rspirv/commits">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=spirv_headers&package-manager=cargo&previous-version=1.4.2&new-version=1.5.0)
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>
Bump glslopt from 0.1.5 to 0.1.7
Bumps [glslopt](https://github.com/jamienicol/glslopt-rs) from 0.1.5 to 0.1.7.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/jamienicol/glslopt-rs/commits">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=glslopt&package-manager=cargo&previous-version=0.1.5&new-version=0.1.7)
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>
Bump autocfg from 1.0.0 to 1.0.1
Bumps [autocfg](https://github.com/cuviper/autocfg) from 1.0.0 to 1.0.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="d2c60343b6"><code>d2c6034</code></a> Merge <a href="https://github-redirect.dependabot.com/cuviper/autocfg/issues/25">#25</a></li>
<li><a href="0f0e5b6c3e"><code>0f0e5b6</code></a> Release 1.0.1</li>
<li><a href="4614739d8e"><code>4614739</code></a> Factor out code to detect if dir contains target to make it amenable to unit ...</li>
<li><a href="8abdd964e0"><code>8abdd96</code></a> Try to determine if --target was passed to Cargo</li>
<li><a href="7c87e60c8a"><code>7c87e60</code></a> Exclude CI files from the package</li>
<li><a href="e3406d0c3a"><code>e3406d0</code></a> Merge <a href="https://github-redirect.dependabot.com/cuviper/autocfg/issues/22">#22</a></li>
<li><a href="f642d1af4c"><code>f642d1a</code></a> Use TESTS_TARGET_DIR envvar to override tests target dir</li>
<li><a href="3eb9a242a9"><code>3eb9a24</code></a> Fix the master cron</li>
<li><a href="407eb91687"><code>407eb91</code></a> Move master to its own cron'ed workflow</li>
<li><a href="ff3cd9e07e"><code>ff3cd9e</code></a> Merge <a href="https://github-redirect.dependabot.com/cuviper/autocfg/issues/21">#21</a></li>
<li>Additional commits viewable in <a href="https://github.com/cuviper/autocfg/compare/1.0.0...1.0.1">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=autocfg&package-manager=cargo&previous-version=1.0.0&new-version=1.0.1)
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>
Bump lazycell from 1.2.1 to 1.3.0
Bumps [lazycell](https://github.com/indiv0/lazycell) from 1.2.1 to 1.3.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/indiv0/lazycell/blob/master/CHANGELOG.md">lazycell's changelog</a>.</em></p>
<blockquote>
<h2>v1.3.0 (2020-08-12)</h2>
<h4>Bug Fixes</h4>
<ul>
<li>Add custom <code>impl Default</code> to support non-Default-able <code><T></code> types (<a href="b49f4eabec">b49f4eab</a>)</li>
<li><strong>lazycell:</strong> Fix unsound aliasing in <code>LazyCell::fill</code> (<a href="e789ac1a99">e789ac1a</a>, closes <a href="https://github-redirect.dependabot.com/indiv0/lazycell/issues/98">#98</a>)</li>
</ul>
<h4>Features</h4>
<ul>
<li>Implement serde support (<a href="e728a0b680">e728a0b6</a>)</li>
</ul>
<h4>Documentation</h4>
<ul>
<li>fix typo (<a href="5f5ba9d5ac">5f5ba9d5</a>)</li>
</ul>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/indiv0/lazycell/commits">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=lazycell&package-manager=cargo&previous-version=1.2.1&new-version=1.3.0)
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>
Bump surfman-chains from 0.5.0 to 0.5.1
Bumps [surfman-chains](https://github.com/asajeffrey/surfman-chains) from 0.5.0 to 0.5.1.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/asajeffrey/surfman-chains/commits">compare view</a></li>
</ul>
</details>
<br />
[](https://dependabot.com/compatibility-score/?dependency-name=surfman-chains&package-manager=cargo&previous-version=0.5.0&new-version=0.5.1)
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>
build(deps): bump webxr from `7763f48` to `cc6af6d`
Bumps [webxr](https://github.com/servo/webxr) from `7763f48` to `cc6af6d`.
<details>
<summary>Commits</summary>
<ul>
<li><a href="cc6af6d8f4"><code>cc6af6d</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/webxr/issues/191">#191</a> - asajeffrey:glwindow-blending, r=Manishearth</li>
<li><a href="86e0753dd1"><code>86e0753</code></a> Enable alpha blending</li>
<li><a href="168675c499"><code>168675c</code></a> Allow AR examples to be transparent</li>
<li>See full diff in <a href="7763f4826f...cc6af6d8f4">compare view</a></li>
</ul>
</details>
<br />
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>
Update the "bad ports" list
https://github.com/whatwg/fetch/issues/1108
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because ___
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Use data_url::Mime to parse the MIME Types
This commit follows the spectification https://fetch.spec.whatwg.org/#concept-header-extract-mime-type
This commit partially addresses #24923 (only the content type part). I'll try to fix the parser stuff in an other commit.
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [x] There are tests for these changes OR
- [ ] These changes do not require tests because ___
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Updated CONTRIBUTING file
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because it's documentation
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->