]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Bump version to 0.8 and cargo update
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt"
4 version = "0.8.0"
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 [features]
15 default = ["cargo-fmt"]
16 cargo-fmt = []
17
18 [dependencies]
19 toml = "0.2.1"
20 rustc-serialize = "0.3"
21 unicode-segmentation = "1.0.0"
22 regex = "0.2"
23 term = "0.4"
24 strings = "0.0.1"
25 diff = "0.1"
26 syntex_syntax = "0.58"
27 syntex_errors = "0.58"
28 log = "0.3"
29 env_logger = "0.4"
30 getopts = "0.2"
31 itertools = "0.5.8"
32 multimap = "0.3"
33
34 [build-dependencies]
35 walkdir = "1.0.3"
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"