]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #2332 from topecongiro/impl-and-trait
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt-nightly"
4 version = "0.3.4"
5 authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
6 description = "Tool to find and fix Rust formatting issues"
7 repository = "https://github.com/rust-lang-nursery/rustfmt"
8 readme = "README.md"
9 license = "Apache-2.0/MIT"
10 build = "build.rs"
11 categories = ["development-tools"]
12
13 [lib]
14 doctest = false
15
16 [[bin]]
17 name = "rustfmt"
18
19 [[bin]]
20 name = "cargo-fmt"
21
22 [[bin]]
23 name = "rustfmt-format-diff"
24
25 [[bin]]
26 name = "git-rustfmt"
27
28 [features]
29 default = ["cargo-fmt", "rustfmt-format-diff"]
30 cargo-fmt = []
31 rustfmt-format-diff = []
32
33 [dependencies]
34 toml = "0.4"
35 serde = "1.0"
36 serde_derive = "1.0"
37 serde_json = "1.0"
38 unicode-segmentation = "1.0.0"
39 regex = "0.2"
40 term = "0.4"
41 diff = "0.1"
42 log = "0.3"
43 env_logger = "0.4"
44 getopts = "0.2"
45 derive-new = "0.5"
46 cargo_metadata = "0.4"
47
48 [target.'cfg(unix)'.dependencies]
49 libc = "0.2.11"
50
51 [target.'cfg(windows)'.dependencies]
52 kernel32-sys = "0.2.2"
53 winapi = "0.2.7"