diff options
author | Leonard Kugis <leonard@kug.is> | 2025-04-12 12:46:52 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-04-12 12:46:52 +0200 |
commit | 8bf0adac445465f2ecd3121f688171895cd61dd1 (patch) | |
tree | 25e2cb4a82cdf097e63a62fccfd51dc69d3db20f /.gitignore | |
parent | 5575ed931b95bb1f4a041c9fc41790ad02911b88 (diff) | |
download | scripts-8bf0adac445465f2ecd3121f688171895cd61dd1.tar.gz |
Implemented calendar in Rust
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -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 |