Skip to content

Commit 630c74d

Browse files
committed
add
1 parent d523045 commit 630c74d

File tree

1 file changed

+25
-10
lines changed

1 file changed

+25
-10
lines changed

.gitignore

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,32 @@
11
# Generated by Cargo
22
# will have compiled files and executables
3-
debug/
4-
target/
3+
/target/
4+
example/target/
5+
6+
# idea
7+
/.idea/
8+
/.idea
9+
.idea/
10+
'.idea'
11+
# vscode
12+
/.vscode/
13+
.vscode/
14+
/.vscode
15+
'.vscode'
16+
17+
18+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
19+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
20+
Cargo.lock
521

622
# These are backup files generated by rustfmt
723
**/*.rs.bk
824

9-
# MSVC Windows builds of rustc generate these, which store debugging information
10-
*.pdb
1125

12-
# RustRover
13-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
14-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
15-
# and can be added to the global gitignore or merged into this file. For a more nuclear
16-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
17-
#.idea/
26+
#log
27+
*.log
28+
29+
#mac
30+
*.DS_Store
31+
32+

0 commit comments

Comments
 (0)