2015-03-07 16:46:35 -06:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Nicholas Cameron <nrc@ncameron.org>"]
|
2015-04-30 03:26:59 -05:00
|
|
|
description = "Tool to find and fix Rust formatting issues"
|
2015-03-07 16:46:35 -06:00
|
|
|
repository = "https://github.com/nick29581/rustfmt"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
|
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-10-08 10:09:54 -05:00
|
|
|
strings = { version = "0.0.1", git = "https://github.com/nrc/strings.rs.git" }
|
|
|
|
diff = { git = "https://github.com/utkarshkukreti/diff.rs.git" }
|
2015-10-22 16:37:13 -05:00
|
|
|
syntex_syntax = { git = "https://github.com/serde-rs/syntex" }
|
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"
|
2015-09-14 13:17:51 -05:00
|
|
|
|
2015-05-11 19:16:46 -05:00
|
|
|
[dev-dependencies]
|