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