From 5af022929cc960376a594b811e99793bd5c50d3c Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 11 May 2022 15:49:18 -0400 Subject: [PATCH] disable default phf features --- parsing/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parsing/Cargo.toml b/parsing/Cargo.toml index d20f847..91f3962 100644 --- a/parsing/Cargo.toml +++ b/parsing/Cargo.toml @@ -10,14 +10,14 @@ description = "Parsing library for YTBN-Graphing-Software" [lib] [dependencies] -phf = "0.10" +phf = { version = "0.10", no-default-features = true } exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [ "partial", ] } lazy_static = "1.4" [build-dependencies] -phf_codegen = "0.10" +phf_codegen = { version = "0.10", no-default-features = true } [package.metadata.cargo-all-features] skip_optional_dependencies = true #don't test optional dependencies, only features