2015-03-07 22:46:35 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "rustfmt"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Nicholas Cameron <nrc@ncameron.org>"]
|
2015-04-30 08:26:59 +00:00
|
|
|
description = "Tool to find and fix Rust formatting issues"
|
2015-03-07 22:46:35 +00:00
|
|
|
repository = "https://github.com/nick29581/rustfmt"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
|
2015-05-23 05:02:59 +00:00
|
|
|
[dependencies]
|
|
|
|
toml = "0.1.20"
|
|
|
|
rustc-serialize = "0.3.14"
|
2015-09-04 03:38:12 +00:00
|
|
|
unicode-segmentation = "0.1.2"
|
|
|
|
regex = "0.1.41"
|
2015-09-10 22:27:22 +00:00
|
|
|
term = "0.2.11"
|
2015-10-08 15:09:54 +00: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 21:37:13 +00:00
|
|
|
syntex_syntax = { git = "https://github.com/serde-rs/syntex" }
|
2015-10-22 21:34:05 +00:00
|
|
|
log = "0.3.2"
|
|
|
|
env_logger = "0.3.1"
|
2015-10-22 21:38:16 +00:00
|
|
|
getopts = "0.2"
|
2015-09-14 18:17:51 +00:00
|
|
|
|
2015-05-12 00:16:46 +00:00
|
|
|
[dev-dependencies]
|