2015-03-07 16:46:35 -06:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt"
|
2017-01-19 13:21:46 -06:00
|
|
|
version = "0.7.1"
|
2015-12-07 21:19:23 -06:00
|
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "Marcus Klaas <mail@marcusklaas.nl>", "The Rustfmt contributors"]
|
2015-04-30 03:26:59 -05:00
|
|
|
description = "Tool to find and fix Rust formatting issues"
|
2015-12-07 21:19:23 -06:00
|
|
|
repository = "https://github.com/rust-lang-nursery/rustfmt"
|
2015-03-07 16:46:35 -06:00
|
|
|
readme = "README.md"
|
|
|
|
license = "Apache-2.0/MIT"
|
2016-08-10 16:53:58 -05:00
|
|
|
include = ["src/*.rs", "Cargo.toml", "build.rs"]
|
2016-06-12 03:38:03 -05:00
|
|
|
build = "build.rs"
|
2017-01-20 11:44:44 -06:00
|
|
|
categories = ["development-tools"]
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-12-14 08:32:03 -06:00
|
|
|
[features]
|
|
|
|
default = ["cargo-fmt"]
|
2015-12-15 16:57:05 -06:00
|
|
|
cargo-fmt = []
|
2015-12-14 08:32:03 -06:00
|
|
|
|
2015-05-23 00:02:59 -05:00
|
|
|
[dependencies]
|
2016-12-23 13:26:23 -06:00
|
|
|
toml = "0.2.1"
|
2016-04-07 22:51:06 -05:00
|
|
|
rustc-serialize = "0.3"
|
2016-12-23 13:26:23 -06:00
|
|
|
unicode-segmentation = "1.0.0"
|
2016-04-07 22:51:06 -05:00
|
|
|
regex = "0.1"
|
|
|
|
term = "0.4"
|
2015-12-13 13:03:58 -06:00
|
|
|
strings = "0.0.1"
|
2016-04-07 22:51:06 -05:00
|
|
|
diff = "0.1"
|
2017-01-18 15:47:07 -06:00
|
|
|
syntex_syntax = "0.56"
|
|
|
|
syntex_errors = "0.56"
|
2016-04-07 22:51:06 -05:00
|
|
|
log = "0.3"
|
|
|
|
env_logger = "0.3"
|
2015-10-22 16:38:16 -05:00
|
|
|
getopts = "0.2"
|
2016-12-23 13:26:23 -06:00
|
|
|
itertools = "0.5.8"
|
2016-05-26 07:17:20 -05:00
|
|
|
multimap = "0.3"
|
2016-05-31 08:15:33 -05:00
|
|
|
|
2016-06-12 03:38:03 -05:00
|
|
|
[build-dependencies]
|
2016-12-23 13:26:23 -06:00
|
|
|
walkdir = "1.0.3"
|
2016-06-12 03:38:03 -05:00
|
|
|
|
2016-05-31 08:15:33 -05:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2.11"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
kernel32-sys = "0.2.2"
|
|
|
|
winapi = "0.2.7"
|