Browse Source

Merge #883

883: Bump mockall_derive from 0.10.2 to 0.11.0 r=thomaseizinger a=dependabot[bot]

Bumps [mockall_derive](https://github.com/asomers/mockall) from 0.10.2 to 0.11.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/asomers/mockall/blob/master/CHANGELOG.md">mockall_derive's changelog</a>.</em></p>
<blockquote>
<h2>[ 0.11.0 ] - 2021-12-11</h2>
<h3>Added</h3>
<ul>
<li><code>mock!</code> and <code>#[automock]</code> now support <code>unsafe</code> traits.
(<a href="https://github-redirect.dependabot.com/asomers/mockall/pull/313">#313</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Bump <code>predicates</code> to v2.0.1, see all v2 changes in
<a href="https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md">predicates' changelog</a>.
(<a href="https://github-redirect.dependabot.com/asomers/mockall/pull/325">#325</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Fixed nondeterministic code generation in methods with multiple lifetime
parameters.
(<a href="https://github-redirect.dependabot.com/asomers/mockall/pull/333">#333</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="1c6a7ab38c"><code>1c6a7ab</code></a> (cargo-release) version 0.11.0</li>
<li><a href="62e22e76e3"><code>62e22e7</code></a> (cargo-release) version 0.11.0</li>
<li><a href="e49261335d"><code>e492613</code></a> Update Mockall's dev-dependency on mockall-double</li>
<li><a href="d7e351199f"><code>d7e3511</code></a> (cargo-release) version 0.2.1</li>
<li><a href="539d8dac88"><code>539d8da</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/asomers/mockall/issues/353">#353</a> from asomers/downcast_0.11</li>
<li><a href="7abfc2464a"><code>7abfc24</code></a> Update downcast to 0.11.0</li>
<li><a href="d4dceabcdb"><code>d4dceab</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/asomers/mockall/issues/346">#346</a> from asomers/unused-warnings</li>
<li><a href="383fb14f33"><code>383fb14</code></a> Fix a Clippy lint on the latest nightly</li>
<li><a href="fbf86241e3"><code>fbf8624</code></a> Suppress unused_imports warnings when mocking modules</li>
<li><a href="bda0ed79e6"><code>bda0ed7</code></a> Be picker about using #[allow(unused)] in the tests</li>
<li>Additional commits viewable in <a href="https://github.com/asomers/mockall/compare/v0.10.2...v0.11.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mockall_derive&package-manager=cargo&previous-version=0.10.2&new-version=0.11.0)](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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
test-force-close-without-fake-clock
bors[bot] 3 years ago
committed by GitHub
parent
commit
d18c48d991
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      Cargo.lock
  2. 2
      daemon/Cargo.toml

16
Cargo.lock

@ -622,7 +622,7 @@ dependencies = [
"itertools",
"maia",
"mockall",
"mockall_derive 0.10.2",
"mockall_derive",
"nalgebra",
"ndarray",
"ndarray_einsum_beta",
@ -1538,23 +1538,11 @@ dependencies = [
"downcast",
"fragile",
"lazy_static",
"mockall_derive 0.11.0",
"mockall_derive",
"predicates",
"predicates-tree",
]
[[package]]
name = "mockall_derive"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7e25b214433f669161f414959594216d8e6ba83b6679d3db96899c0b4639033"
dependencies = [
"cfg-if 1.0.0",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "mockall_derive"
version = "0.11.0"

2
daemon/Cargo.toml

@ -59,7 +59,7 @@ path = "src/maker.rs"
[dev-dependencies]
mockall = "0.11.0"
mockall_derive = "0.10.2"
mockall_derive = "0.11.0"
pretty_assertions = "1"
serde_test = "1"
time = { version = "0.3", features = ["std"] }

Loading…
Cancel
Save