From afddded8fdab6925a83f1240999ebac8f76f239d Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 28 Feb 2026 12:35:07 +0800 Subject: Replace manual template processing with just_template library --- templates/compile_info.rs.template | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'templates/compile_info.rs.template') diff --git a/templates/compile_info.rs.template b/templates/compile_info.rs.template index b65055b..fcaaf63 100644 --- a/templates/compile_info.rs.template +++ b/templates/compile_info.rs.template @@ -12,13 +12,13 @@ pub struct CompileInfo { impl Default for CompileInfo { fn default() -> Self { Self { - date: "{date}".to_string(), - target: "{target}".to_string(), - platform: "{platform}".to_string(), - toolchain: "{toolchain}".to_string(), - cli_version: "{version}".to_string(), - build_branch: "{branch}".to_string(), - build_commit: "{commit}".to_string(), + date: "<<>>".to_string(), + target: "<<>>".to_string(), + platform: "<<>>".to_string(), + toolchain: "<<>>".to_string(), + cli_version: "<<>>".to_string(), + build_branch: "<<>>".to_string(), + build_commit: "<<>>".to_string(), } } } -- cgit