rust/Cargo.lock
Tobias Bucher 7d70c9b02d 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.
2015-04-30 09:33:13 +02:00

13 lines
266 B
TOML

[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"