We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c9d98 commit 2c9fe2dCopy full SHA for 2c9fe2d
web_atoms/Cargo.toml
@@ -20,4 +20,4 @@ phf = "0.11"
20
21
[build-dependencies]
22
string_cache_codegen = "0.5.4"
23
-phf_codegen = "0.11"
+phf_codegen = "0.12"
web_atoms/build.rs
@@ -101,7 +101,7 @@ fn named_entities_to_phf(to: &Path) {
101
102
let mut phf_map = phf_codegen::Map::new();
103
for (key, value) in entities {
104
- phf_map.entry(key, &format!("{value:?}"));
+ phf_map.entry(key, format!("{value:?}"));
105
}
106
107
let mut file = File::create(to).unwrap();
0 commit comments