Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Advent-of-Code-2021/.gitignore
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (30 sloc)
1017 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created by https://www.toptal.com/developers/gitignore/api/rust,visualstudiocode | |
# Edit at https://www.toptal.com/developers/gitignore?templates=rust,visualstudiocode | |
### 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 | |
!.vscode/tasks.json | |
!.vscode/launch.json | |
!.vscode/extensions.json | |
*.code-workspace | |
# Local History for Visual Studio Code | |
.history/ | |
### VisualStudioCode Patch ### | |
# Ignore all local history of files | |
.history | |
.ionide | |
# Support for Project snippet scope | |
!.vscode/*.code-snippets | |
# End of https://www.toptal.com/developers/gitignore/api/rust,visualstudiocode |