]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Extract checkstyle output into a separate module.
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt"
4 version = "0.2.1"
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"]
11
12 [features]
13 default = ["cargo-fmt"]
14 cargo-fmt = []
15
16 [dependencies]
17 toml = "0.1.20"
18 rustc-serialize = "0.3.14"
19 unicode-segmentation = "0.1.2"
20 regex = "0.1.41"
21 term = "0.2.11"
22 strings = "0.0.1"
23 diff = "0.1.8"
24 syntex_syntax = "0.23.0"
25 log = "0.3.2"
26 env_logger = "0.3.1"
27 getopts = "0.2"