2015-03-07 16:46:35 -06:00
|
|
|
[package]
|
|
|
|
|
2017-06-13 20:57:31 -05:00
|
|
|
name = "rustfmt-nightly"
|
2017-12-10 14:35:30 -06:00
|
|
|
version = "0.3.0"
|
2017-03-07 15:18:10 -06:00
|
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
|
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-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
|
|
|
|
2017-03-29 21:49:10 -05:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2017-06-13 20:57:31 -05:00
|
|
|
[[bin]]
|
|
|
|
name = "rustfmt"
|
|
|
|
|
2017-06-13 23:16:51 -05:00
|
|
|
[[bin]]
|
|
|
|
name = "cargo-fmt"
|
|
|
|
|
2017-07-29 17:59:30 -05:00
|
|
|
[[bin]]
|
|
|
|
name = "rustfmt-format-diff"
|
|
|
|
|
2017-11-07 12:59:14 -06:00
|
|
|
[[bin]]
|
|
|
|
name = "git-fmt"
|
|
|
|
|
2015-12-14 08:32:03 -06:00
|
|
|
[features]
|
2017-07-29 17:59:30 -05:00
|
|
|
default = ["cargo-fmt", "rustfmt-format-diff"]
|
2015-12-15 16:57:05 -06:00
|
|
|
cargo-fmt = []
|
2017-07-29 17:59:30 -05:00
|
|
|
rustfmt-format-diff = []
|
2015-12-14 08:32:03 -06:00
|
|
|
|
2015-05-23 00:02:59 -05:00
|
|
|
[dependencies]
|
2017-05-03 03:23:50 -05:00
|
|
|
toml = "0.4"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2016-12-23 13:26:23 -06:00
|
|
|
unicode-segmentation = "1.0.0"
|
2017-02-26 08:09:09 -06:00
|
|
|
regex = "0.2"
|
2016-04-07 22:51:06 -05:00
|
|
|
term = "0.4"
|
|
|
|
diff = "0.1"
|
|
|
|
log = "0.3"
|
2017-02-26 07:53:53 -06:00
|
|
|
env_logger = "0.4"
|
2015-10-22 16:38:16 -05:00
|
|
|
getopts = "0.2"
|
2017-11-06 06:43:17 -06:00
|
|
|
derive-new = "0.5"
|
2017-11-28 02:35:52 -06:00
|
|
|
cargo_metadata = "0.3"
|
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"
|