]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
dcf4a3670b2cd4b664cef732f29a1d64df225361
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt"
4 version = "0.8.5"
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 [features]
18 default = ["cargo-fmt"]
19 cargo-fmt = []
20
21 [dependencies]
22 toml = "0.4"
23 serde = "1.0"
24 serde_derive = "1.0"
25 serde_json = "1.0"
26 unicode-segmentation = "1.0.0"
27 regex = "0.2"
28 term = "0.4"
29 strings = "0.1"
30 diff = "0.1"
31 syntex_syntax = "0.59"
32 syntex_errors = "0.59"
33 log = "0.3"
34 env_logger = "0.4"
35 getopts = "0.2"
36
37 [target.'cfg(unix)'.dependencies]
38 libc = "0.2.11"
39
40 [target.'cfg(windows)'.dependencies]
41 kernel32-sys = "0.2.2"
42 winapi = "0.2.7"