From 40b57a3d2e2398b68d436b1c8fb409aec736eaf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jul 2021 10:15:28 +0000 Subject: [PATCH] Update petgraph requirement from 0.5 to 0.6 Updates the requirements on [petgraph](https://github.com/petgraph/petgraph) to permit the latest version. - [Release notes](https://github.com/petgraph/petgraph/releases) - [Changelog](https://github.com/petgraph/petgraph/blob/master/RELEASES.rst) - [Commits](https://github.com/petgraph/petgraph/compare/0.5.0...0.6.0) --- updated-dependencies: - dependency-name: petgraph dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d0882c3..d2e4423 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ description = "An implementation of the rete rule matching algorithm" crate-type = ["rlib", "cdylib"] [dependencies] -petgraph = "0.5" +petgraph = "0.6" serde = { version = "1", features = ["derive"], optional = true } tracing = "0.1"