-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
53 lines (36 loc) · 823 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Created by https://www.toptal.com/developers/gitignore/api/rust
# Edit at https://www.toptal.com/developers/gitignore?templates=rust
### Rust ###
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Cargo.lock should be only added to binary crates
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# End of https://www.toptal.com/developers/gitignore/api/rust
# IntelliJ
.idea/
# Visual Studio Code
.vscode/
workspace.code-workspace
# macOS
.DS_Store
# MDBOOK
target
# MacOS temp file
.DS_Store
book-test
guide/book
.vscode
tests/dummy_book/book/
test_book/book/
# Ignore Jetbrains specific files.
.idea/
proc-opt-book/book
# Ignore Vim temporary and swap files.
*.sw?
*~