Browse Source

Bump num-integer from 0.1.44 to 0.1.45 (#2053)

Bumps [num-integer](https://github.com/rust-num/num-integer) from 0.1.44 to 0.1.45.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/rust-num/num-integer/blob/master/RELEASES.md">num-integer's changelog</a>.</em></p>
<blockquote>
<h1>Release 0.1.45 (2022-04-29)</h1>
<ul>
<li><a href="https://github-redirect.dependabot.com/rust-num/num-integer/pull/45"><code>Integer::next_multiple_of</code> and <code>prev_multiple_of</code> no longer overflow -1</a>.</li>
<li><a href="https://github-redirect.dependabot.com/rust-num/num-integer/pull/47"><code>Integer::is_multiple_of</code> now handles a 0 argument without panicking</a>
for primitive integers.</li>
<li><a href="https://github-redirect.dependabot.com/rust-num/num-integer/pull/46"><code>ExtendedGcd</code> no longer has any private fields</a>, making it possible for
external implementations to customize <code>Integer::extended_gcd</code>.</li>
</ul>
<p><strong>Contributors</strong>: <a href="https://github.com/ciphergoth"><code>@​ciphergoth</code></a>, <a href="https://github.com/cuviper"><code>@​cuviper</code></a>, <a href="https://github.com/tspiteri"><code>@​tspiteri</code></a>, <a href="https://github.com/WizardOfMenlo"><code>@​WizardOfMenlo</code></a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="683903c79f"><code>683903c</code></a> Add more changes to 0.1.45</li>
<li><a href="42c22de556"><code>42c22de</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-num/num-integer/issues/47">#47</a></li>
<li><a href="dee9a82166"><code>dee9a82</code></a> Release 0.1.45</li>
<li><a href="4ebb39d28f"><code>4ebb39d</code></a> cargo fmt</li>
<li><a href="1656a2fd14"><code>1656a2f</code></a> Added a fex negative tests</li>
<li><a href="a7d40a121b"><code>a7d40a1</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-num/num-integer/issues/45">#45</a></li>
<li><a href="d839ba577a"><code>d839ba5</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-num/num-integer/issues/46">#46</a></li>
<li><a href="7a8397f00d"><code>7a8397f</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-num/num-integer/issues/50">#50</a></li>
<li><a href="bba8f3d6b3"><code>bba8f3d</code></a> Correct documentation for gcd</li>
<li><a href="41480951c5"><code>4148095</code></a> Fixed is multiple of</li>
<li>Additional commits viewable in <a href="https://github.com/rust-num/num-integer/compare/num-integer-0.1.44...num-integer-0.1.45">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=num-integer&package-manager=cargo&previous-version=0.1.44&new-version=0.1.45)](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>
pull/2052/head
dependabot[bot] 3 years ago
parent
commit
668b224b1b
  1. 4
      Cargo.lock
  2. 2
      boa_engine/Cargo.toml

4
Cargo.lock generated

@ -817,9 +817,9 @@ dependencies = [
[[package]] [[package]]
name = "num-integer" name = "num-integer"
version = "0.1.44" version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"num-traits", "num-traits",

2
boa_engine/Cargo.toml

@ -31,7 +31,7 @@ num-traits = "0.2.14"
regress = "0.4.1" regress = "0.4.1"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
num-bigint = { version = "0.4.3", features = ["serde"] } num-bigint = { version = "0.4.3", features = ["serde"] }
num-integer = "0.1.44" num-integer = "0.1.45"
bitflags = "1.3.2" bitflags = "1.3.2"
indexmap = "1.8.1" indexmap = "1.8.1"
ryu-js = "0.2.2" ryu-js = "0.2.2"

Loading…
Cancel
Save