2015-03-07 16:46:35 -06:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt"
|
2015-12-13 13:03:58 -06:00
|
|
|
version = "0.1.0"
|
2015-12-07 21:19:23 -06:00
|
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "Marcus Klaas <mail@marcusklaas.nl>", "The Rustfmt contributors"]
|
2015-04-30 03:26:59 -05:00
|
|
|
description = "Tool to find and fix Rust formatting issues"
|
2015-12-07 21:19:23 -06:00
|
|
|
repository = "https://github.com/rust-lang-nursery/rustfmt"
|
2015-03-07 16:46:35 -06:00
|
|
|
readme = "README.md"
|
|
|
|
license = "Apache-2.0/MIT"
|
2015-12-07 21:19:23 -06:00
|
|
|
include = ["src/*.rs", "Cargo.toml"]
|
2015-03-07 16:46:35 -06:00
|
|
|
|
2015-05-23 00:02:59 -05:00
|
|
|
[dependencies]
|
|
|
|
toml = "0.1.20"
|
|
|
|
rustc-serialize = "0.3.14"
|
2015-09-03 22:38:12 -05:00
|
|
|
unicode-segmentation = "0.1.2"
|
|
|
|
regex = "0.1.41"
|
2015-09-10 17:27:22 -05:00
|
|
|
term = "0.2.11"
|
2015-12-13 13:03:58 -06:00
|
|
|
strings = "0.0.1"
|
|
|
|
diff = "0.1.7"
|
|
|
|
syntex_syntax = "0.23.0"
|
2015-10-22 16:34:05 -05:00
|
|
|
log = "0.3.2"
|
|
|
|
env_logger = "0.3.1"
|
2015-10-22 16:38:16 -05:00
|
|
|
getopts = "0.2"
|