We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 873e6ba commit 294550bCopy full SHA for 294550b
.gitignore
@@ -1,6 +1,7 @@
1
# Generated by Cargo
2
# will have compiled files and executables
3
-/target/
+debug/
4
+target/
5
6
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
@@ -9,10 +10,15 @@ Cargo.lock
9
10
# These are backup files generated by rustfmt
11
**/*.rs.bk
12
13
+# MSVC Windows builds of rustc generate these, which store debugging information
14
+*.pdb
15
+
16
# Ignore user settings file
17
.env
18
/.vscode/
19
-# Ignore source code files
20
+# Ignore source code files but track the directories themselves using .gitkeep
21
/src/contest/*
22
+!/src/contest/.gitkeep
23
/src/lib/src/*
24
+!/src/lib/src/.gitkeep
src/contest/.gitkeep
src/lib/src/.gitkeep
0 commit comments