From eb95a3e38fe0988f374b82435530361e6600bb4a Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Thu, 5 Oct 2023 23:30:55 +1100 Subject: [PATCH] Add dep `normalize-path` to `binstalk-fetchers` Signed-off-by: Jiahao XU --- Cargo.lock | 1 + crates/binstalk-fetchers/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 634ad0d1..8f69b052 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -302,6 +302,7 @@ dependencies = [ "leon-macros", "miette", "minisign-verify", + "normalize-path", "once_cell", "serde", "strum", diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index 947e7c74..f72f39ad 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -23,6 +23,7 @@ leon = { version = "2.0.1", path = "../leon" } leon-macros = { version = "1.0.0", path = "../leon-macros" } miette = "5.9.0" minisign-verify = "0.2.1" +normalize-path = { version = "0.2.1", path = "../normalize-path" } once_cell = "1.18.0" serde = { version = "1.0.163", optional = true } strum = "0.25.0"