Auto merge of #27916 - servo:dependabot/cargo/ordered-float-1.1.1, r=jdm

Bump ordered-float from 1.0.2 to 1.1.1

Bumps [ordered-float](https://github.com/reem/rust-ordered-float) from 1.0.2 to 1.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/reem/rust-ordered-float/releases">ordered-float's releases</a>.</em></p>
<blockquote>
<h2>v1.1.1</h2>
<ul>
<li>Make assignment operators panic safe (<a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/71">#71</a>). This fixes a bug that could cause undefined behavior in safe code.</li>
</ul>
<h2>v1.1.0</h2>
<ul>
<li>Implement Sum and Product traits for NotNan (<a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/65">#65</a>).</li>
<li>Implement Neg and Zero traits for OrderedFloat (<a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/60">#60</a>, <a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/66">#66</a>).</li>
<li>Implement Add, Sub, Mul, and Div traits for OrderedFloat.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="ebbbb4711e"><code>ebbbb47</code></a> Version 1.1.1</li>
<li><a href="da4a8dd493"><code>da4a8dd</code></a> Make assignment operators panic safe</li>
<li><a href="96672a8af0"><code>96672a8</code></a> Version 1.1.0</li>
<li><a href="70848787af"><code>7084878</code></a> impl Add/Sub/Mul/Div for OrderedFloat</li>
<li><a href="57e16fdd5d"><code>57e16fd</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/66">#66</a> from Uriopass/patch-1</li>
<li><a href="9a241dc1d7"><code>9a241dc</code></a> Add Zero impl for OrderedFloat</li>
<li><a href="90f4ca8d63"><code>90f4ca8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/65">#65</a> from bennofs/master</li>
<li><a href="eae40333bd"><code>eae4033</code></a> Add Sum/Product impls for NotNan</li>
<li><a href="06afbc94f6"><code>06afbc9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/reem/rust-ordered-float/issues/60">#60</a> from wookietreiber/topic/neg</li>
<li><a href="9013e4c202"><code>9013e4c</code></a> adds neg for ordered float</li>
<li>See full diff in <a href="https://github.com/reem/rust-ordered-float/compare/v1.0.2...v1.1.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=ordered-float&package-manager=cargo&previous-version=1.0.2&new-version=1.1.1)](https://dependabot.com/compatibility-score/?dependency-name=ordered-float&package-manager=cargo&previous-version=1.0.2&new-version=1.1.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>
This commit is contained in:
bors-servo 2020-12-07 09:34:24 -05:00 committed by GitHub
commit 4a0ef87bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Cargo.lock generated
View file

@ -4208,9 +4208,9 @@ dependencies = [
[[package]]
name = "ordered-float"
version = "1.0.2"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18869315e81473c951eb56ad5558bbc56978562d3ecfb87abb7a1e944cea4518"
checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7"
dependencies = [
"num-traits",
]