7d70c9b02d
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.
13 lines
266 B
TOML
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"
|
|
|