2018-03-02 14:28:34 +13:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt-nightly"
|
2018-12-10 10:51:26 +13:00
|
|
|
version = "1.0.1"
|
2018-03-02 14:28:34 +13:00
|
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
|
|
|
|
description = "Tool to find and fix Rust formatting issues"
|
2018-11-27 14:04:48 +13:00
|
|
|
repository = "https://github.com/rust-lang/rustfmt"
|
2018-03-02 14:28:34 +13:00
|
|
|
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 = []
|
2018-11-27 18:25:57 +09:00
|
|
|
generic-simd = ["bytecount/generic-simd"]
|
2018-03-02 14:28:34 +13:00
|
|
|
|
|
|
|
[dependencies]
|
2018-10-08 14:39:16 -03:00
|
|
|
atty = "0.2"
|
2019-01-26 00:17:36 +01:00
|
|
|
itertools = "0.8"
|
2018-03-02 14:28:34 +13:00
|
|
|
toml = "0.4"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
unicode-segmentation = "1.0.0"
|
2018-05-12 18:58:27 +02:00
|
|
|
regex = "1.0"
|
2018-03-06 19:45:17 +09:00
|
|
|
term = "0.5"
|
2018-03-02 14:28:34 +13:00
|
|
|
diff = "0.1"
|
2018-03-02 13:08:23 +01:00
|
|
|
log = "0.4"
|
2019-01-26 00:17:36 +01:00
|
|
|
env_logger = "0.6"
|
2018-03-02 14:28:34 +13:00
|
|
|
getopts = "0.2"
|
|
|
|
derive-new = "0.5"
|
2019-01-26 00:17:36 +01:00
|
|
|
cargo_metadata = "0.7"
|
2018-12-08 14:39:52 +09:00
|
|
|
rustc-ap-rustc_target = "306.0.0"
|
|
|
|
rustc-ap-syntax = "306.0.0"
|
|
|
|
rustc-ap-syntax_pos = "306.0.0"
|
2019-01-26 00:17:36 +01:00
|
|
|
failure = "0.1.3"
|
|
|
|
bytecount = "0.5"
|
2019-01-15 08:41:09 +09:00
|
|
|
unicode-width = "0.1.5"
|
|
|
|
unicode_categories = "0.1.1"
|
2019-01-07 20:38:56 +01:00
|
|
|
dirs = "1.0.4"
|
2018-03-02 14:28:34 +13:00
|
|
|
|
2018-10-17 12:47:21 -07:00
|
|
|
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
|
|
|
|
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
|
|
|
|
# for more information.
|
|
|
|
rustc-workspace-hack = "1.0.0"
|
|
|
|
|
2018-03-02 14:28:34 +13:00
|
|
|
[dev-dependencies]
|
2018-04-20 21:08:20 +12:00
|
|
|
lazy_static = "1.0.0"
|