From cb871ef24839d7a78b45916b04ddab6423d38595 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 16:36:55 +0000 Subject: [PATCH] fix(deps): update rust crate pathfinding to 4.9.0 --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d2350f6..45f3c2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -662,9 +662,9 @@ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" [[package]] name = "indexmap" -version = "2.1.0" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" +checksum = "824b2ae422412366ba479e8111fd301f7b5faece8149317bb81925979a53f520" dependencies = [ "equivalent", "hashbrown", @@ -858,9 +858,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.17" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" +checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" dependencies = [ "autocfg", "libm", @@ -934,9 +934,9 @@ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pathfinding" -version = "4.8.2" +version = "4.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35df0d074a99be583b76dc771329be9f7be45ebae444d601285dc7a094c2ac0a" +checksum = "bc2f12be6d5625ace0ac07cd1778d8507386d4cb199576b51490af71aa164d16" dependencies = [ "deprecate-until", "fixedbitset", diff --git a/Cargo.toml b/Cargo.toml index 39f0e0f..5dd4e7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ clap = { version = "4.5", features = ["derive"] } color-eyre = "0.6.2" csv = "1.3.0" eyre = "0.6.12" -pathfinding = "4.8.2" +pathfinding = "4.9.0" rand = "0.8.5" serde = { version = "1.0.196", features = ["derive"] } sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "mysql", "macros", "any"] }