-
Notifications
You must be signed in to change notification settings - Fork 26
/
.gitignore
29 lines (23 loc) · 830 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Created by https://www.toptal.com/developers/gitignore/api/vscode,rust,dotenv
# Edit at https://www.toptal.com/developers/gitignore?templates=vscode,rust,dotenv
### dotenv ###
# This normally contains sensitive information, like DB passwords, so we don't want
# this commited in a source code repository.
.env
### Rust ###
# Generated by Cargo
# will have compiled files and executables
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it inside for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
### vscode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
### Bevy ###
wgpu_trace
# End of https://www.toptal.com/developers/gitignore/api/vscode,rust,dotenv