]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Merge pull request #1251 from erickt/master
[rust.git] / Cargo.toml
index a71d4abae86828a0d4b026da1f6cc144d373e072..b8c77b6bf1c2789a360caf7c1de3567bcb63a2b9 100644 (file)
@@ -1,21 +1,41 @@
 [package]
 
 name = "rustfmt"
-version = "0.0.1"
-authors = ["Nicholas Cameron <nrc@ncameron.org>"]
+version = "0.6.3"
+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/nick29581/rustfmt"
+repository = "https://github.com/rust-lang-nursery/rustfmt"
 readme = "README.md"
 license = "Apache-2.0/MIT"
+include = ["src/*.rs", "Cargo.toml", "build.rs"]
+build = "build.rs"
 
-[dependencies.strings]
-strings = "0.0.1"
-git = "https://github.com/nrc/strings.rs.git"
+[features]
+default = ["cargo-fmt"]
+cargo-fmt = []
 
 [dependencies]
-toml = "0.1.20"
-rustc-serialize = "0.3.14"
-
-[dev-dependencies]
-diff = "0.1.0"
+toml = "0.2.1"
+rustc-serialize = "0.3"
+unicode-segmentation = "1.0.0"
 regex = "0.1"
+term = "0.4"
+strings = "0.0.1"
+diff = "0.1"
+syntex_syntax = "0.52"
+syntex_errors = "0.52"
+log = "0.3"
+env_logger = "0.3"
+getopts = "0.2"
+itertools = "0.5.8"
+multimap = "0.3"
+
+[build-dependencies]
+walkdir = "1.0.3"
+
+[target.'cfg(unix)'.dependencies]
+libc = "0.2.11"
+
+[target.'cfg(windows)'.dependencies]
+kernel32-sys = "0.2.2"
+winapi = "0.2.7"