Skip to content

Commit

Permalink
Bump petgraph from 0.6.2 to 0.6.3 (#276)
Browse files Browse the repository at this point in the history
Bumps [petgraph](https://github.com/petgraph/petgraph) from 0.6.2 to
0.6.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/petgraph/petgraph/blob/master/RELEASES.rst">petgraph's
changelog</a>.</em></p>
<blockquote>
<h1>Version 0.6.3 (2023-02-07)</h1>
<ul>
<li>Added an iterator over subgraph isomorphisms
(<code>[#500](https://github.com/petgraph/petgraph/issues/500)</code>_)</li>
<li>Added serde support on <code>GraphMap</code>
(<code>[#496](https://github.com/petgraph/petgraph/issues/496)</code>_)</li>
<li>Added <code>reverse</code> method for <code>StableGraph</code>
(<code>[#533](https://github.com/petgraph/petgraph/issues/533)</code>_)</li>
<li>Added <code>edges_connecting</code> iterator for
<code>StableGraph</code>
(<code>[#521](https://github.com/petgraph/petgraph/issues/521)</code>_)</li>
<li>Fix Floyd-Warshall algorithm behaviour on undirected graphs
(<code>487</code>_)</li>
<li>Fix IntoEdgesDirected implementation for NodeFiltered when direction
is Incoming (<code>476</code>_)</li>
<li>Fix cardinality check in subgraph isomorphism
(<code>472</code>_)</li>
<li>Fix UB in <code>MatrixGraph</code>
(<code>[#505](https://github.com/petgraph/petgraph/issues/505)</code>_)</li>
</ul>
<p>..
_<code>[#472](https://github.com/petgraph/petgraph/issues/472)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/472">petgraph/petgraph#472</a>
..
_<code>[#476](https://github.com/petgraph/petgraph/issues/476)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/476">petgraph/petgraph#476</a>
..
_<code>[#487](https://github.com/petgraph/petgraph/issues/487)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/487">petgraph/petgraph#487</a>
..
_<code>[#496](https://github.com/petgraph/petgraph/issues/496)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/496">petgraph/petgraph#496</a>
..
_<code>[#500](https://github.com/petgraph/petgraph/issues/500)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/500">petgraph/petgraph#500</a>
..
_<code>[#505](https://github.com/petgraph/petgraph/issues/505)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/505">petgraph/petgraph#505</a>
..
_<code>[#521](https://github.com/petgraph/petgraph/issues/521)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/521">petgraph/petgraph#521</a>
..
_<code>[#533](https://github.com/petgraph/petgraph/issues/533)</code>:
<a
href="https://github-redirect.dependabot.com/petgraph/petgraph/issues/533">petgraph/petgraph#533</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/petgraph/petgraph/commits/0.6.3">compare
view</a></li>
</ul>
</details>
<br />


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

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yota Toyama <raviqqe@gmail.com>
  • Loading branch information
dependabot[bot] and raviqqe committed Feb 8, 2023
1 parent ba82cc4 commit 1310c3d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/compile/error.rs
Expand Up @@ -19,7 +19,7 @@ impl Display for CompileError {
write!(formatter, "module \"{}\" not found", path.display())
}
Self::RuleNotFound(rule) => {
write!(formatter, "rule \"{}\" not found", rule)
write!(formatter, "rule \"{rule}\" not found")
}
}
}
Expand Down
22 changes: 11 additions & 11 deletions src/error.rs
Expand Up @@ -32,9 +32,9 @@ impl Display for ApplicationError {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
match self {
Self::Build => write!(formatter, "build failed"),
Self::Compile(error) => write!(formatter, "{}", error),
Self::Compile(error) => write!(formatter, "{error}"),
Self::DefaultOutputNotFound(output) => {
write!(formatter, "default output \"{}\" not found", output)
write!(formatter, "default output \"{output}\" not found")
}
Self::DynamicDependencyNotFound(build) => {
write!(
Expand All @@ -44,23 +44,23 @@ impl Display for ApplicationError {
build.dynamic_module().unwrap()
)
}
Self::FileNotFound(path) => write!(formatter, "file \"{}\" not found", path),
Self::FileNotFound(path) => write!(formatter, "file \"{path}\" not found"),
Self::InputNotBuilt(input) => {
write!(formatter, "input \"{}\" not built yet", input)
write!(formatter, "input \"{input}\" not built yet")
}
Self::InputNotFound(input) => {
write!(formatter, "input \"{}\" not found", input)
write!(formatter, "input \"{input}\" not found")
}
Self::ModuleDependency(error) => {
write!(formatter, "{}", error)
write!(formatter, "{error}")
}
Self::Other(message) => write!(formatter, "{}", message),
Self::Other(message) => write!(formatter, "{message}"),
Self::OutputNotFound(output) => {
write!(formatter, "output \"{}\" not found", output)
write!(formatter, "output \"{output}\" not found")
}
Self::Parse(error) => write!(formatter, "{}", error),
Self::Sled(error) => write!(formatter, "{}", error),
Self::BuildGraph(error) => write!(formatter, "{}", error),
Self::Parse(error) => write!(formatter, "{error}"),
Self::Sled(error) => write!(formatter, "{error}"),
Self::BuildGraph(error) => write!(formatter, "{error}"),
}
}
}
Expand Down

0 comments on commit 1310c3d

Please sign in to comment.