Skip to content

Commit 2c9fe2d

Browse files
dependabot[bot]simonwuelker
authored andcommitted
Update phf_codegen requirement from 0.11 to 0.12
Updates the requirements on [phf_codegen](https://github.com/rust-phf/rust-phf) to permit the latest version. - [Release notes](https://github.com/rust-phf/rust-phf/releases) - [Changelog](https://github.com/rust-phf/rust-phf/blob/main/RELEASE_PROCESS.md) - [Commits](rust-phf/rust-phf@phf_codegen-v0.11.1...v0.12.1) --- updated-dependencies: - dependency-name: phf_codegen dependency-version: 0.12.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a7c9d98 commit 2c9fe2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web_atoms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ phf = "0.11"
2020

2121
[build-dependencies]
2222
string_cache_codegen = "0.5.4"
23-
phf_codegen = "0.11"
23+
phf_codegen = "0.12"

web_atoms/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ fn named_entities_to_phf(to: &Path) {
101101

102102
let mut phf_map = phf_codegen::Map::new();
103103
for (key, value) in entities {
104-
phf_map.entry(key, &format!("{value:?}"));
104+
phf_map.entry(key, format!("{value:?}"));
105105
}
106106

107107
let mut file = File::create(to).unwrap();

0 commit comments

Comments
 (0)