From 1a1cbb107382d8379ac4f7f003aaf66f1721cb39 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 11:01:22 +0000 Subject: [PATCH] Initial upload: Project Scaffold CLI with multi-language templates and CI/CD --- project_scaffold_cli/templates/rust/Cargo.toml.j2 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 project_scaffold_cli/templates/rust/Cargo.toml.j2 diff --git a/project_scaffold_cli/templates/rust/Cargo.toml.j2 b/project_scaffold_cli/templates/rust/Cargo.toml.j2 new file mode 100644 index 0000000..edd6179 --- /dev/null +++ b/project_scaffold_cli/templates/rust/Cargo.toml.j2 @@ -0,0 +1,9 @@ +[package] +name = "{{ project_slug }}" +version = "0.1.0" +edition = "2021" +authors = ["{{ author }} <{{ email }}>"] +description = "{{ description }}" +license = "{{ license }}" + +[dependencies]