summaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2025-04-12 12:46:52 +0200
committerLeonard Kugis <leonard@kug.is>2025-04-12 12:46:52 +0200
commit8bf0adac445465f2ecd3121f688171895cd61dd1 (patch)
tree25e2cb4a82cdf097e63a62fccfd51dc69d3db20f /.gitignore
parent5575ed931b95bb1f4a041c9fc41790ad02911b88 (diff)
downloadscripts-8bf0adac445465f2ecd3121f688171895cd61dd1.tar.gz
Implemented calendar in Rust
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore22
1 files changed, 19 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index ce73bef..0fcb377 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
config.json
-# Created by https://www.toptal.com/developers/gitignore/api/linux,visualstudiocode
-# Edit at https://www.toptal.com/developers/gitignore?templates=linux,visualstudiocode
+# Created by https://www.toptal.com/developers/gitignore/api/rust,visualstudiocode,linux
+# Edit at https://www.toptal.com/developers/gitignore?templates=rust,visualstudiocode,linux
### Linux ###
*~
@@ -17,6 +17,22 @@ config.json
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
+### Rust ###
+# Generated by Cargo
+# will have compiled files and executables
+debug/
+target/
+
+# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
+# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
+Cargo.lock
+
+# These are backup files generated by rustfmt
+**/*.rs.bk
+
+# MSVC Windows builds of rustc generate these, which store debugging information
+*.pdb
+
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
@@ -36,4 +52,4 @@ config.json
.history
.ionide
-# End of https://www.toptal.com/developers/gitignore/api/linux,visualstudiocode \ No newline at end of file
+# End of https://www.toptal.com/developers/gitignore/api/rust,visualstudiocode,linux \ No newline at end of file