66cac1f3e9
* Handle pub(restricted) This commit properly handles pub(restricted) as introduced in RFC 1422 [0]. The syntax support was added in #971, but they were not correctly formatted. [0] https://github.com/rust-lang/rfcs/blob/master/text/1422-pub-restricted.md Fixes #970 * Drop #[inline] attribute on format_visibility * Make newly non-failing functions return String The change to `format_visibiilty` means that `format_header` and `format_unit_struct` can no longer fail. Their return type is updated to reflect that.
29 lines
653 B
TOML
29 lines
653 B
TOML
[package]
|
|
|
|
name = "rustfmt"
|
|
version = "0.5.0"
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "Marcus Klaas <mail@marcusklaas.nl>", "The Rustfmt contributors"]
|
|
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"
|
|
include = ["src/*.rs", "Cargo.toml"]
|
|
|
|
[features]
|
|
default = ["cargo-fmt"]
|
|
cargo-fmt = []
|
|
|
|
[dependencies]
|
|
toml = "0.1"
|
|
rustc-serialize = "0.3"
|
|
unicode-segmentation = "0.1"
|
|
regex = "0.1"
|
|
term = "0.4"
|
|
strings = "0.0.1"
|
|
diff = "0.1"
|
|
syntex_syntax = "0.32"
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
getopts = "0.2"
|
|
itertools = "0.4.15"
|