From bc675d2ff388bf5f39fb95eec70b53fbac4a0761 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 11:01:23 +0000 Subject: [PATCH] Initial upload: Project Scaffold CLI with multi-language templates and CI/CD --- .../templates/rust/README.md.j2 | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 project_scaffold_cli/templates/rust/README.md.j2 diff --git a/project_scaffold_cli/templates/rust/README.md.j2 b/project_scaffold_cli/templates/rust/README.md.j2 new file mode 100644 index 0000000..48bff57 --- /dev/null +++ b/project_scaffold_cli/templates/rust/README.md.j2 @@ -0,0 +1,23 @@ +# {{ project_name }} + +{{ description }} + +## Installation + +```bash +cargo add {{ project_slug }} +``` + +## Usage + +```rust +use {{ project_slug }}::run; + +fn main() { + run(); +} +``` + +## License + +{{ license }}