]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Remove unnecessary use of Box in `format_function_type`
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt-nightly"
4 version = "0.6.1"
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 itertools = "0.7"
36 toml = "0.4"
37 serde = "1.0"
38 serde_derive = "1.0"
39 serde_json = "1.0"
40 unicode-segmentation = "1.0.0"
41 regex = "0.2"
42 term = "0.5"
43 diff = "0.1"
44 log = "0.4"
45 env_logger = "0.5"
46 getopts = "0.2"
47 derive-new = "0.5"
48 cargo_metadata = "0.5.1"
49 rustc-ap-rustc_target = "121.0.0"
50 rustc-ap-syntax = "121.0.0"
51 failure = "0.1.1"
52
53 [dev-dependencies]
54 assert_cli = "0.5"
55 lazy_static = "1.0.0"
56
57 [target.'cfg(unix)'.dependencies]
58 libc = "0.2.11"
59
60 [target.'cfg(windows)'.dependencies]
61 winapi = { version = "0.3" }