From fb6eeaed6ac0257e2f0302b8c4164671c2747450 Mon Sep 17 00:00:00 2001 From: jedarden Date: Fri, 8 May 2026 10:22:58 -0400 Subject: [PATCH] feat(starter-rust): add .gitignore for target/ and Cargo.lock Add .gitignore to exclude Rust build artifacts from version control. This matches the pattern used by other starter kits and keeps the repository clean of build outputs. --- starters/rust/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 starters/rust/.gitignore diff --git a/starters/rust/.gitignore b/starters/rust/.gitignore new file mode 100644 index 0000000..ca98cd9 --- /dev/null +++ b/starters/rust/.gitignore @@ -0,0 +1,2 @@ +/target/ +Cargo.lock