]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
v0.1.1
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt-nightly"
4 version = "0.1.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 include = ["src/*.rs", "Cargo.toml", "build.rs", "LICENSE-*"]
11 build = "build.rs"
12 categories = ["development-tools"]
13
14 [lib]
15 doctest = false
16
17 [[bin]]
18 name = "rustfmt"
19
20 [[bin]]
21 name = "cargo-fmt"
22
23 [features]
24 default = ["cargo-fmt"]
25 cargo-fmt = []
26
27 [dependencies]
28 toml = "0.4"
29 serde = "1.0"
30 serde_derive = "1.0"
31 serde_json = "1.0"
32 unicode-segmentation = "1.0.0"
33 regex = "0.2"
34 term = "0.4"
35 strings = "0.1"
36 diff = "0.1"
37 log = "0.3"
38 env_logger = "0.4"
39 getopts = "0.2"
40
41 [target.'cfg(unix)'.dependencies]
42 libc = "0.2.11"
43
44 [target.'cfg(windows)'.dependencies]
45 kernel32-sys = "0.2.2"
46 winapi = "0.2.7"