Skip to content

Commit 6a8349c

Browse files
chore(deps): bump which from 7.0.3 to 8.0.2 (#96)
Bumps [which](https://github.com/harryfei/which-rs) from 7.0.3 to 8.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/harryfei/which-rs/releases">which's releases</a>.</em></p> <blockquote> <h2>8.0.2</h2> <h2>What's Changed</h2> <ul> <li>Remove <code>env_home</code> dependency by <a href="https://github.com/madsmtm"><code>@​madsmtm</code></a> in <a href="https://redirect.github.com/harryfei/which-rs/pull/118">harryfei/which-rs#118</a></li> <li>New windows impl by <a href="https://github.com/Xaeroxe"><code>@​Xaeroxe</code></a> in <a href="https://redirect.github.com/harryfei/which-rs/pull/121">harryfei/which-rs#121</a></li> <li>Swap dependency on rustix for dependency on libc by <a href="https://github.com/Xaeroxe"><code>@​Xaeroxe</code></a> in <a href="https://redirect.github.com/harryfei/which-rs/pull/122">harryfei/which-rs#122</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/madsmtm"><code>@​madsmtm</code></a> made their first contribution in <a href="https://redirect.github.com/harryfei/which-rs/pull/118">harryfei/which-rs#118</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/harryfei/which-rs/compare/8.0.1...8.0.2">https://github.com/harryfei/which-rs/compare/8.0.1...8.0.2</a></p> <h2>8.0.1</h2> <h2>What's Changed</h2> <ul> <li>Update Readme by <a href="https://github.com/atouchet"><code>@​atouchet</code></a> in <a href="https://redirect.github.com/harryfei/which-rs/pull/115">harryfei/which-rs#115</a></li> <li>Empty path fix for Windows machines by <a href="https://github.com/Xaeroxe"><code>@​Xaeroxe</code></a> in <a href="https://redirect.github.com/harryfei/which-rs/pull/117">harryfei/which-rs#117</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/atouchet"><code>@​atouchet</code></a> made their first contribution in <a href="https://redirect.github.com/harryfei/which-rs/pull/115">harryfei/which-rs#115</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/harryfei/which-rs/compare/8.0.0...8.0.1">https://github.com/harryfei/which-rs/compare/8.0.0...8.0.1</a></p> <h2>8.0.0</h2> <h2>What's Changed</h2> <ul> <li>Add new <code>Sys</code> trait to allow abstracting over the underlying filesystem. Particularly useful for <code>wasm32-unknown-unknown</code> targets. Thanks <a href="https://github.com/dsherret"><code>@​dsherret</code></a> for this contribution to which!</li> <li>Add more debug level tracing for otherwise silent I/O errors.</li> <li>Call the <code>NonFatalHandler</code> in more places to catch previously ignored I/O errors.</li> <li>Remove use of the <code>either</code> dependency.</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dsherret"><code>@​dsherret</code></a> made their first contribution in <a href="https://redirect.github.com/harryfei/which-rs/pull/109">harryfei/which-rs#109</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md">which's changelog</a>.</em></p> <blockquote> <h2>8.0.2</h2> <ul> <li>Dependency on <code>home_env</code> removed, the implementation found in rust 1.85.0 for a home directory has been fixed. Thanks, [<a href="https://github.com/madsmtm"><code>@​madsmtm</code></a>],(<a href="https://github.com/madsmtm">https://github.com/madsmtm</a>) for this contribution to which!</li> <li>Dependency on <code>winsafe</code> removed, code for Windows API is now handwritten.</li> <li>Dependency on <code>rustix</code> removed, we now depend on <code>libc</code> directly to reduce compile times.</li> </ul> <h2>8.0.1</h2> <ul> <li>Fix Windows bug reported in <a href="https://redirect.github.com/harryfei/which-rs/issues/108#issuecomment-3998654328">harryfei/which-rs#108</a></li> </ul> <h2>8.0.0</h2> <ul> <li>Add new <code>Sys</code> trait to allow abstracting over the underlying filesystem. Particularly useful for <code>wasm32-unknown-unknown</code> targets. Thanks <a href="https://github.com/dsherret"><code>@​dsherret</code></a> for this contribution to which!</li> <li>Add more debug level tracing for otherwise silent I/O errors.</li> <li>Call the <code>NonFatalHandler</code> in more places to catch previously ignored I/O errors.</li> <li>Remove use of the <code>either</code> dependency.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/harryfei/which-rs/commit/5bb3e82a82a6ef8f56a3a455125680fd6579c7ca"><code>5bb3e82</code></a> update README MSRV</li> <li><a href="https://github.com/harryfei/which-rs/commit/aacc10ece3376c86d472cd2ea6e9aaa1d013ab75"><code>aacc10e</code></a> add changelog entry</li> <li><a href="https://github.com/harryfei/which-rs/commit/7b0c544ec05f491b923fa40db4c1729d19303932"><code>7b0c544</code></a> Swap dependency on rustix for dependency on libc (<a href="https://redirect.github.com/harryfei/which-rs/issues/122">#122</a>)</li> <li><a href="https://github.com/harryfei/which-rs/commit/189e99a7db5cd5aa3dfe2d6c90199bf0e97ae1b7"><code>189e99a</code></a> New windows impl (<a href="https://redirect.github.com/harryfei/which-rs/issues/121">#121</a>)</li> <li><a href="https://github.com/harryfei/which-rs/commit/c48f04e974f0061963c29f5e0293eae2cd8e96ab"><code>c48f04e</code></a> clippy fixes</li> <li><a href="https://github.com/harryfei/which-rs/commit/1fa32b79b83a750b5a23ee4fa0ced6b0c8522048"><code>1fa32b7</code></a> bump msrv, bump version, add to changelog</li> <li><a href="https://github.com/harryfei/which-rs/commit/b0d6e741229c74dd7eececd0d1a72f00bfd0bb22"><code>b0d6e74</code></a> Remove env_home dependency</li> <li><a href="https://github.com/harryfei/which-rs/commit/26972207b98de1bfd6c0e16690f5c9186388b54c"><code>2697220</code></a> chore: add release steps documentation</li> <li><a href="https://github.com/harryfei/which-rs/commit/873554e9c99c655fcec04c7196f759a60103eb1e"><code>873554e</code></a> add entry to CHANGELOG.md for 8.0.1</li> <li><a href="https://github.com/harryfei/which-rs/commit/d684aba22e6ae2b75154b2f6d6771a743c1953de"><code>d684aba</code></a> bump version to 8.0.1</li> <li>Additional commits viewable in <a href="https://github.com/harryfei/which-rs/compare/7.0.3...8.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=which&package-manager=cargo&previous-version=7.0.3&new-version=8.0.2)](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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jonathan D.A. Jewell <6759885+hyperpolymath@users.noreply.github.com>
2 parents d203ddb + d01a825 commit 6a8349c

2 files changed

Lines changed: 4 additions & 19 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ live-provers = ["verisim"]
128128
[dev-dependencies]
129129
proptest = "1"
130130
tokio-test = "0.4"
131-
which = "7"
131+
which = "8"
132132
pretty_assertions = "1"
133133
criterion = { version = "0.5", features = ["html_reports"] }
134134

0 commit comments

Comments
 (0)