]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
8d0952ab1094f9322528750775f6b2f6477ea125
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt"
4 version = "0.0.1"
5 authors = ["Nicholas Cameron <nrc@ncameron.org>"]
6 description = "Tool to find and fix Rust formatting issues"
7 repository = "https://github.com/nick29581/rustfmt"
8 readme = "README.md"
9 license = "Apache-2.0/MIT"
10
11 [dependencies.strings]
12 strings = "0.0.1"
13 git = "https://github.com/nrc/strings.rs.git"
14
15 [dependencies]
16 toml = "0.1.20"
17 rustc-serialize = "0.3.14"
18 unicode-segmentation = "0.1.2"
19 regex = "0.1.41"
20 term = "0.2.11"
21
22 [dependencies.diff]
23 git = "https://github.com/utkarshkukreti/diff.rs.git"
24
25 [dev-dependencies]