disable default phf features

This commit is contained in:
Simon Gardling 2022-05-11 15:49:18 -04:00
parent 42be889c8a
commit 5af022929c

View File

@ -10,14 +10,14 @@ description = "Parsing library for YTBN-Graphing-Software"
[lib] [lib]
[dependencies] [dependencies]
phf = "0.10" phf = { version = "0.10", no-default-features = true }
exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [ exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [
"partial", "partial",
] } ] }
lazy_static = "1.4" lazy_static = "1.4"
[build-dependencies] [build-dependencies]
phf_codegen = "0.10" phf_codegen = { version = "0.10", no-default-features = true }
[package.metadata.cargo-all-features] [package.metadata.cargo-all-features]
skip_optional_dependencies = true #don't test optional dependencies, only features skip_optional_dependencies = true #don't test optional dependencies, only features