phf should be a dev dependency

The `phf` crate is used in a benchmark for testing identifier normalization but not in the library itself.  This moves it to be a dev dependency.
This commit is contained in:
Sheldon Young 2024-07-11 12:13:56 -07:00 committed by GitHub
parent 0e971b55c2
commit 39e3c951f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,12 +13,12 @@ serde_json = ["dep:serde_json", "rinja/serde_json"]
[dependencies]
rinja = { path = "../rinja", version = "0.2.0" }
phf = { version = "0.11", features = ["macros" ]}
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
rinja = { path = "../rinja", version = "0.2.0", features = ["serde_json"] }
criterion = "0.5"
phf = { version = "0.11", features = ["macros" ]}
trybuild = "1.0.76"
[[bench]]