2018-03-01 19:28:34 -06:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt-nightly"
|
2019-04-24 09:25:35 -05:00
|
|
|
version = "1.2.2"
|
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"
|
2018-11-26 19:04:48 -06:00
|
|
|
repository = "https://github.com/rust-lang/rustfmt"
|
2018-03-01 19:28:34 -06:00
|
|
|
readme = "README.md"
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
build = "build.rs"
|
|
|
|
categories = ["development-tools"]
|
2019-02-07 09:22:34 -06:00
|
|
|
edition = "2018"
|
2018-03-01 19:28:34 -06:00
|
|
|
|
|
|
|
[[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 03:25:57 -06:00
|
|
|
generic-simd = ["bytecount/generic-simd"]
|
2018-03-01 19:28:34 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2018-10-08 12:39:16 -05:00
|
|
|
atty = "0.2"
|
2019-01-25 17:17:36 -06:00
|
|
|
itertools = "0.8"
|
2019-04-17 17:26:22 -05:00
|
|
|
toml = "0.5"
|
2019-05-09 12:22:44 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-03-01 19:28:34 -06:00
|
|
|
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"
|
2019-01-25 17:17:36 -06:00
|
|
|
env_logger = "0.6"
|
2018-03-01 19:28:34 -06:00
|
|
|
getopts = "0.2"
|
|
|
|
derive-new = "0.5"
|
2019-01-25 17:17:36 -06:00
|
|
|
cargo_metadata = "0.7"
|
2019-06-03 09:57:02 -05:00
|
|
|
rustc-ap-rustc_target = "486.0.0"
|
|
|
|
rustc-ap-syntax = "486.0.0"
|
|
|
|
rustc-ap-syntax_pos = "486.0.0"
|
2019-01-25 17:17:36 -06:00
|
|
|
failure = "0.1.3"
|
|
|
|
bytecount = "0.5"
|
2019-01-14 17:41:09 -06:00
|
|
|
unicode-width = "0.1.5"
|
|
|
|
unicode_categories = "0.1.1"
|
2019-01-07 13:38:56 -06:00
|
|
|
dirs = "1.0.4"
|
2019-04-14 05:30:44 -05:00
|
|
|
ignore = "0.4.6"
|
2019-04-17 07:33:36 -05:00
|
|
|
annotate-snippets = { version = "0.5.0", features = ["ansi_term"] }
|
2019-05-20 04:23:03 -05:00
|
|
|
structopt = "0.2.15"
|
2018-03-01 19:28:34 -06:00
|
|
|
|
2019-03-31 04:42:49 -05:00
|
|
|
config_proc_macro = { path = "config_proc_macro" }
|
|
|
|
|
2018-10-17 14:47:21 -05: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-01 19:28:34 -06:00
|
|
|
[dev-dependencies]
|
2018-04-20 04:08:20 -05:00
|
|
|
lazy_static = "1.0.0"
|