From 92e7b433a4f62cc9b070cd1d678a6061d0906ee6 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Fri, 15 Jul 2022 14:55:13 -0400 Subject: [PATCH] chore: point to local crates for now --- phf/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phf/Cargo.toml b/phf/Cargo.toml index b2873131..e1e8c0d9 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -26,8 +26,8 @@ macros = [ [dependencies] proc-macro-hack = { version = "0.5.4", optional = true } -phf_macros = { version = "0.10.0", optional = true } -phf_shared = { version = "0.10.0", default-features = false } +phf_macros = { version = "0.10.0", optional = true, path = "../phf_macros" } +phf_shared = { version = "0.10.0", default-features = false, path = "../phf_shared" } serde = { version = "1.0", optional = true } [package.metadata.docs.rs]