]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
deps: bump rustc-ap* to v651
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt-nightly"
4 version = "1.4.12"
5 authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
6 description = "Tool to find and fix Rust formatting issues"
7 repository = "https://github.com/rust-lang/rustfmt"
8 readme = "README.md"
9 license = "Apache-2.0/MIT"
10 build = "build.rs"
11 categories = ["development-tools"]
12 edition = "2018"
13
14 [[bin]]
15 name = "rustfmt"
16 path = "src/bin/main.rs"
17
18 [[bin]]
19 name = "cargo-fmt"
20 path = "src/cargo-fmt/main.rs"
21
22 [[bin]]
23 name = "rustfmt-format-diff"
24 path = "src/format-diff/main.rs"
25
26 [[bin]]
27 name = "git-rustfmt"
28 path = "src/git-rustfmt/main.rs"
29
30 [features]
31 default = ["cargo-fmt", "rustfmt-format-diff"]
32 cargo-fmt = []
33 rustfmt-format-diff = []
34 generic-simd = ["bytecount/generic-simd"]
35
36 [dependencies]
37 itertools = "0.8"
38 toml = "0.5"
39 serde = { version = "1.0", features = ["derive"] }
40 serde_json = "1.0"
41 unicode-segmentation = "1.0.0"
42 regex = "1.0"
43 term = "0.6"
44 diff = "0.1"
45 log = "0.4"
46 env_logger = "0.6"
47 getopts = "0.2"
48 derive-new = "0.5"
49 cargo_metadata = "0.8"
50 failure = "0.1.3"
51 bytecount = "0.6"
52 unicode-width = "0.1.5"
53 unicode_categories = "0.1.1"
54 dirs = "2.0.1"
55 ignore = "0.4.11"
56 annotate-snippets = { version = "0.6", features = ["ansi_term"] }
57 structopt = "0.3"
58 rustfmt-config_proc_macro = { version = "0.2", path = "config_proc_macro" }
59 lazy_static = "1.0.0"
60
61 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
62 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
63 # for more information.
64 rustc-workspace-hack = "1.0.0"
65
66 [dependencies.rustc_ast]
67 package = "rustc-ap-rustc_ast"
68 version = "651.0.0"
69
70 [dependencies.rustc_ast_pretty]
71 package = "rustc-ap-rustc_ast_pretty"
72 version = "651.0.0"
73
74 [dependencies.rustc_data_structures]
75 package = "rustc-ap-rustc_data_structures"
76 version = "651.0.0"
77
78 [dependencies.rustc_errors]
79 package = "rustc-ap-rustc_errors"
80 version = "651.0.0"
81
82 [dependencies.rustc_expand]
83 package = "rustc-ap-rustc_expand"
84 version = "651.0.0"
85
86 [dependencies.rustc_parse]
87 package = "rustc-ap-rustc_parse"
88 version = "651.0.0"
89
90 [dependencies.rustc_session]
91 package = "rustc-ap-rustc_session"
92 version = "651.0.0"
93
94 [dependencies.rustc_span]
95 package = "rustc-ap-rustc_span"
96 version = "651.0.0"
97
98 [dependencies.rustc_target]
99 package = "rustc-ap-rustc_target"
100 version = "651.0.0"