]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Merge pull request #638 from marcusklaas/visual-struct-last-comment
[rust.git] / Cargo.toml
index 31edfbbdc0691b03887c932dbc67dd8eaf5e71cd..ebd4e8e7f1e73b6f7f87b9b82cc074191922588f 100644 (file)
@@ -3,15 +3,22 @@
 name = "rustfmt"
 version = "0.0.1"
 authors = ["Nicholas Cameron <nrc@ncameron.org>"]
-description = "tool to find and fix Rust formatting issues"
+description = "Tool to find and fix Rust formatting issues"
 repository = "https://github.com/nick29581/rustfmt"
 readme = "README.md"
 license = "Apache-2.0/MIT"
 
-#[dependencies.reprint]
-#reprint = "0.0.1"
-#path = "/home/ncameron/reprint"
+[dependencies]
+toml = "0.1.20"
+rustc-serialize = "0.3.14"
+unicode-segmentation = "0.1.2"
+regex = "0.1.41"
+term = "0.2.11"
+strings = { version = "0.0.1", git = "https://github.com/nrc/strings.rs.git" }
+diff = { git = "https://github.com/utkarshkukreti/diff.rs.git" }
+syntex_syntax = { git = "https://github.com/serde-rs/syntex" }
+log = "0.3.2"
+env_logger = "0.3.1"
+getopts = "0.2"
 
-[[bin]]
-name = "rustfmt"
-path = "src/mod.rs"
+[dev-dependencies]