From 0883cccd9f79dc8b2edd3f6469cc1c13a8e9a664 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Jun 2023 13:28:31 +0000 Subject: [PATCH] Update pathfinding requirement from 3.0.14 to 4.3.0 Updates the requirements on [pathfinding](https://github.com/samueltardieu/pathfinding) to permit the latest version. - [Release notes](https://github.com/samueltardieu/pathfinding/releases) - [Changelog](https://github.com/samueltardieu/pathfinding/blob/main/CHANGELOG.md) - [Commits](https://github.com/samueltardieu/pathfinding/compare/v3.0.14...v4.3.0) --- updated-dependencies: - dependency-name: pathfinding dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- graph-diversity/Cargo.toml | 2 +- simulator/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graph-diversity/Cargo.toml b/graph-diversity/Cargo.toml index cb6b588..7146221 100644 --- a/graph-diversity/Cargo.toml +++ b/graph-diversity/Cargo.toml @@ -10,7 +10,7 @@ lightning-simulator = {path = "../simulator"} network-parser = {path = "../network-parser"} log = "0.4" env_logger = "0.7" -pathfinding = "3.0.14" +pathfinding = "4.3.0" clap = { version = "4.0.22", features = ["derive"]} itertools = "0.10.5" serde = {version = "1.0", features = ["derive"]} diff --git a/simulator/Cargo.toml b/simulator/Cargo.toml index 85ded71..7eac69e 100644 --- a/simulator/Cargo.toml +++ b/simulator/Cargo.toml @@ -12,7 +12,7 @@ log = "0.4" env_logger = "0.7" serde = {version = "1.0", features = ["derive"]} serde_json = "1.0" -pathfinding = "3.0.14" +pathfinding = "4.3.0" clap = { version = "4.0.22", features = ["derive"]} lazy_static = "1.4.0" rand = { version = "0.8.5", features = ["small_rng", "alloc"]}