codegen: Unify string conversion style

This commit is contained in:
Taiki Endo
2024-06-20 04:32:58 +09:00
parent 4222c00e29
commit e2ceb8a503
2 changed files with 14 additions and 14 deletions

View File

@@ -46,16 +46,16 @@ fn main() -> Result<()> {
paths.sort_by_key(fs_err::DirEntry::path);
let mut tools = vec![MarkdownEntry {
name: "valgrind".to_string(),
name: "valgrind".to_owned(),
alias: None,
website: "https://valgrind.org/".to_string(),
website: "https://valgrind.org/".to_owned(),
installed_to: InstalledTo::Snap,
installed_from: InstalledFrom::Snap,
platforms: Platforms { linux: true, ..Default::default() },
repository: "https://sourceware.org/git/valgrind.git".to_string(),
repository: "https://sourceware.org/git/valgrind.git".to_owned(),
license_markdown:
"[GPL-2.0](https://sourceware.org/git/?p=valgrind.git;a=blob;f=COPYING;hb=HEAD)"
.to_string(),
.to_owned(),
}];
for path in paths {