From 4826808b9b96252016cf03cd38232f62d55e44a0 Mon Sep 17 00:00:00 2001 From: Dustin Carlino Date: Sun, 25 Apr 2021 18:02:59 -0700 Subject: [PATCH] Use fast_paths from crates.io, now that a new release is out --- Cargo.lock | 5 +++-- map_model/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 311f28793e..6acb0be8b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1043,8 +1043,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fast_paths" -version = "0.1.1-SNAPSHOT" -source = "git+https://github.com/easbar/fast_paths#192ae1997f9857791826ac5ed16892b2f692920c" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a8a62c6d5e007415b7ddc5092ae0c26ba0b8d365e58d175381e1362ca7198ec" dependencies = [ "log", "priority-queue", diff --git a/map_model/Cargo.toml b/map_model/Cargo.toml index f048fd110a..70d083828f 100644 --- a/map_model/Cargo.toml +++ b/map_model/Cargo.toml @@ -9,7 +9,7 @@ abstio = { path = "../abstio" } abstutil = { path = "../abstutil" } anyhow = "1.0.38" enumset = { version = "1.0.3", features=["serde"] } -fast_paths = { git = "https://github.com/easbar/fast_paths" } +fast_paths = "0.2.0" geom = { path = "../geom" } log = "0.4.14" nbez = "0.1.0"