From 15b508b7931aacd0c07ad6f52d4cefa6eef69fa1 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Wed, 10 Dec 2025 11:10:47 +0800 Subject: Add Windows installer script generation to build process - Generate Inno Setup installer script from template at build time - Extract author and homepage from Cargo.toml for script customization - Add generated installer script to .gitignore to avoid committing build artifacts --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 92ed9ed..524c96a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,8 @@ name = "just_enough_vcs_cli" edition = "2024" build = "build.rs" +authors = ["JustEnoughVCS Team"] +homepage = "http://jvcs.cc/" [workspace] members = ["crates/build_helper"] -- cgit