From 7d70c9b02d3f53fd8a15a6770c4947186a29f1b2 Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Thu, 30 Apr 2015 09:33:13 +0200 Subject: [PATCH] Add `Cargo.lock` file, because this application is a program Do this so you can reliably build `rustfmt` in the future, even if one of the dependencies (in this case, only `strings.rs`) makes backward-incompatible changes. See also http://doc.crates.io/guide.html#cargo.toml-vs-cargo.lock. --- Cargo.lock | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Cargo.lock diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000000..0d3b11ac492 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,12 @@ +[root] +name = "rustfmt" +version = "0.0.1" +dependencies = [ + "strings 0.0.1 (git+https://github.com/nrc/strings.rs.git)", +] + +[[package]] +name = "strings" +version = "0.0.1" +source = "git+https://github.com/nrc/strings.rs.git#551331d01911b7e8da056a4a019eb367cfaf03bd" +