]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
v0.6.0
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt"
4 version = "0.6.0"
5 authors = ["Nicholas Cameron <ncameron@mozilla.com>", "Marcus Klaas <mail@marcusklaas.nl>", "The Rustfmt contributors"]
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"]
11 build = "build.rs"
12
13 [features]
14 default = ["cargo-fmt"]
15 cargo-fmt = []
16
17 [dependencies]
18 toml = "0.1"
19 rustc-serialize = "0.3"
20 unicode-segmentation = "0.1"
21 regex = "0.1"
22 term = "0.4"
23 strings = "0.0.1"
24 diff = "0.1"
25 syntex_syntax = "0.33"
26 log = "0.3"
27 env_logger = "0.3"
28 getopts = "0.2"
29 itertools = "0.4.15"
30 multimap = "0.3"
31
32 [build-dependencies]
33 walkdir = "0.1.5"
34
35 [target.'cfg(unix)'.dependencies]
36 libc = "0.2.11"
37
38 [target.'cfg(windows)'.dependencies]
39 kernel32-sys = "0.2.2"
40 winapi = "0.2.7"