-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
52 lines (39 loc) · 845 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
# Ignore Cargo build directory
/target/
# Ignore the output of the rustup toolchain installs
/.rustup/
/.rustup/
# Ignore Cargo.lock (in projects that use libraries)
/Cargo.lock
# Ignore compiled binary (if you're using a build script)
*.rs.bk
# If using `cargo install`, ignore installed binaries
bin/
# Ignore the generated documentation
/target/doc/
# Ignore build artifacts (incremental compilation, etc.)
**/*.rs.bk
**/*.rlib
# If using Rustfmt, ignore formatting backups
**/*.rs.bk
# Ignore files generated by tests
/tests-output.txt
/tests-output/
# Ignore IntelliJ IDEA's project files
.idea/
*.iml
*.iws
out/
# Ignore Visual Studio Code settings
.vscode/
*.code-workspace
# Ignore files generated by CLion/Rust plugin
cmake-build-*/
/.idea/
/.idea/
/*.ipr
/*.iml
/.idea/modules.xml
.idea/workspace.xml
# macOS
database.db