2018-03-02 14:28:34 +13:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt-nightly"
|
2021-10-20 00:11:59 -05:00
|
|
|
version = "1.4.38"
|
2018-03-02 14:28:34 +13:00
|
|
|
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"]
|
2021-09-19 12:49:55 -04:00
|
|
|
edition = "2021"
|
2018-03-02 14:28:34 +13: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 18:25:57 +09:00
|
|
|
generic-simd = ["bytecount/generic-simd"]
|
2018-03-02 14:28:34 +13:00
|
|
|
|
|
|
|
[dependencies]
|
2021-10-20 00:11:59 -05:00
|
|
|
itertools = "0.9"
|
2019-04-18 07:26:22 +09:00
|
|
|
toml = "0.5"
|
2019-05-09 13:22:44 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-03-02 14:28:34 +13:00
|
|
|
serde_json = "1.0"
|
|
|
|
unicode-segmentation = "1.0.0"
|
2018-05-12 18:58:27 +02:00
|
|
|
regex = "1.0"
|
2019-07-29 05:52:45 +09:00
|
|
|
term = "0.6"
|
2018-03-02 14:28:34 +13:00
|
|
|
diff = "0.1"
|
2021-05-02 16:56:25 -04:00
|
|
|
log = "0.4.14"
|
2021-10-20 00:11:59 -05:00
|
|
|
env_logger = "0.8"
|
2018-03-02 14:28:34 +13:00
|
|
|
getopts = "0.2"
|
|
|
|
derive-new = "0.5"
|
2021-10-20 00:11:59 -05:00
|
|
|
cargo_metadata = "0.14"
|
2019-09-08 23:33:21 +09:00
|
|
|
bytecount = "0.6"
|
2019-01-15 08:41:09 +09:00
|
|
|
unicode-width = "0.1.5"
|
|
|
|
unicode_categories = "0.1.1"
|
2019-06-30 13:12:13 +09:00
|
|
|
dirs = "2.0.1"
|
2021-10-20 00:11:59 -05:00
|
|
|
ignore = "0.4.17"
|
2021-04-22 22:33:36 +09:00
|
|
|
annotate-snippets = { version = "0.8", features = ["color"] }
|
2019-09-08 23:33:21 +09:00
|
|
|
structopt = "0.3"
|
|
|
|
rustfmt-config_proc_macro = { version = "0.2", path = "config_proc_macro" }
|
2020-03-26 21:25:34 -05:00
|
|
|
lazy_static = "1.0.0"
|
2019-12-02 16:20:17 -08:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
2019-03-31 18:42:49 +09: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"
|
|
|
|
|
2021-02-16 22:25:41 -05:00
|
|
|
# Rustc dependencies are loaded from the sysroot, Cargo doesn't know about them.
|