From 49c69d440e1f69fb092142c0354968960134c534 Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Sat, 18 Mar 2017 13:40:35 +0100 Subject: [PATCH] Ignore `Cargo.lock` in Git This is a library project and should not check in its `Cargo.lock`. Being in the `.gitignore` file helps achieve that. http://doc.crates.io/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 37727f9..4a71904 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,5 @@ *.exe # Generated by Cargo +/Cargo.lock /target/