]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #3002 from lqd/normalize-doc-attributes
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt-nightly"
4 version = "0.99.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 [[bin]]
14 name = "rustfmt"
15 path = "src/bin/main.rs"
16
17 [[bin]]
18 name = "cargo-fmt"
19 path = "src/cargo-fmt/main.rs"
20
21 [[bin]]
22 name = "rustfmt-format-diff"
23 path = "src/format-diff/main.rs"
24
25 [[bin]]
26 name = "git-rustfmt"
27 path = "src/git-rustfmt/main.rs"
28
29 [features]
30 default = ["cargo-fmt", "rustfmt-format-diff"]
31 cargo-fmt = []
32 rustfmt-format-diff = []
33
34 [dependencies]
35 isatty = "0.1"
36 itertools = "0.7"
37 toml = "0.4"
38 serde = "1.0"
39 serde_derive = "1.0"
40 serde_json = "1.0"
41 unicode-segmentation = "1.0.0"
42 regex = "1.0"
43 term = "0.5"
44 diff = "0.1"
45 log = "0.4"
46 env_logger = "0.5"
47 getopts = "0.2"
48 derive-new = "0.5"
49 cargo_metadata = "0.6"
50 rustc-ap-rustc_target = "253.0.0"
51 rustc-ap-syntax = "253.0.0"
52 rustc-ap-syntax_pos = "253.0.0"
53 failure = "0.1.1"
54
55 [dev-dependencies]
56 assert_cli = "0.6"
57 lazy_static = "1.0.0"