2018-03-01 19:28:34 -06:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt-nightly"
|
2018-09-25 15:55:15 -05:00
|
|
|
version = "0.99.5"
|
2018-03-01 19:28:34 -06:00
|
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
|
|
|
|
description = "Tool to find and fix Rust formatting issues"
|
|
|
|
repository = "https://github.com/rust-lang-nursery/rustfmt"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
build = "build.rs"
|
|
|
|
categories = ["development-tools"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rustfmt"
|
|
|
|
path = "src/bin/main.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cargo-fmt"
|
|
|
|
path = "src/cargo-fmt/main.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "rustfmt-format-diff"
|
|
|
|
path = "src/format-diff/main.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "git-rustfmt"
|
|
|
|
path = "src/git-rustfmt/main.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["cargo-fmt", "rustfmt-format-diff"]
|
|
|
|
cargo-fmt = []
|
|
|
|
rustfmt-format-diff = []
|
|
|
|
|
|
|
|
[dependencies]
|
2018-10-08 12:39:16 -05:00
|
|
|
atty = "0.2"
|
2018-03-09 10:19:38 -06:00
|
|
|
itertools = "0.7"
|
2018-03-01 19:28:34 -06:00
|
|
|
toml = "0.4"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
unicode-segmentation = "1.0.0"
|
2018-05-12 11:58:27 -05:00
|
|
|
regex = "1.0"
|
2018-03-06 04:45:17 -06:00
|
|
|
term = "0.5"
|
2018-03-01 19:28:34 -06:00
|
|
|
diff = "0.1"
|
2018-03-02 06:08:23 -06:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.5"
|
2018-03-01 19:28:34 -06:00
|
|
|
getopts = "0.2"
|
|
|
|
derive-new = "0.5"
|
2018-07-14 08:16:23 -05:00
|
|
|
cargo_metadata = "0.6"
|
2018-10-10 19:53:25 -05:00
|
|
|
rustc-ap-rustc_target = "272.0.0"
|
|
|
|
rustc-ap-syntax = "272.0.0"
|
|
|
|
rustc-ap-syntax_pos = "272.0.0"
|
2018-04-24 00:45:28 -05:00
|
|
|
failure = "0.1.1"
|
2018-10-13 15:39:19 -05:00
|
|
|
bytecount = { version = "0.3", features = ["simd-accel"] }
|
2018-03-01 19:28:34 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-05-12 11:58:27 -05:00
|
|
|
assert_cli = "0.6"
|
2018-04-20 04:08:20 -05:00
|
|
|
lazy_static = "1.0.0"
|