diff options
author | Ivan Tham <[email protected]> | 2020-04-10 03:41:45 +0100 |
---|---|---|
committer | Ivan Tham <[email protected]> | 2020-04-10 03:41:45 +0100 |
commit | 72de9e36630feba4343f22e4ae09e696bbb9ce38 (patch) | |
tree | b9cb9c7f4fe2b1bced4a0e4fb038f9cf157778a8 /.gitignore | |
parent | 2d0e9699096bb0129e3f5efd37d7b62333c41ac9 (diff) |
Add Cargo.lock
https://doc.rust-lang.org/cargo/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -2,13 +2,9 @@ | |||
2 | # will have compiled files and executables | 2 | # will have compiled files and executables |
3 | /target/ | 3 | /target/ |
4 | 4 | ||
5 | # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
6 | # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
7 | Cargo.lock | ||
8 | |||
9 | # These are backup files generated by rustfmt | 5 | # These are backup files generated by rustfmt |
10 | **/*.rs.bk | 6 | **/*.rs.bk |
11 | 7 | ||
12 | # ignore history used by rustyline | 8 | # ignore history used by rustyline |
13 | history.txt | 9 | history.txt |
14 | ./.idea \ No newline at end of file | 10 | ./.idea |