From 8bf0adac445465f2ecd3121f688171895cd61dd1 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Sat, 12 Apr 2025 12:46:52 +0200 Subject: Implemented calendar in Rust --- .gitignore | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) (limited to '.gitignore') 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 -- cgit v1.2.3