rust/Cargo.toml

50 lines
917 B
TOML
Raw Normal View History

[package]
2017-06-14 01:57:31 +00:00
name = "rustfmt-nightly"
2017-11-05 15:55:10 +00:00
version = "0.2.14"
2017-03-07 21:18:10 +00:00
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
description = "Tool to find and fix Rust formatting issues"
repository = "https://github.com/rust-lang-nursery/rustfmt"
readme = "README.md"
license = "Apache-2.0/MIT"
build = "build.rs"
2017-01-20 17:44:44 +00:00
categories = ["development-tools"]
2017-03-30 02:49:10 +00:00
[lib]
doctest = false
2017-06-14 01:57:31 +00:00
[[bin]]
name = "rustfmt"
[[bin]]
name = "cargo-fmt"
[[bin]]
name = "rustfmt-format-diff"
[features]
default = ["cargo-fmt", "rustfmt-format-diff"]
cargo-fmt = []
rustfmt-format-diff = []
2015-05-23 05:02:59 +00:00
[dependencies]
toml = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
unicode-segmentation = "1.0.0"
regex = "0.2"
2016-04-08 03:51:06 +00:00
term = "0.4"
strings = "0.1"
2016-04-08 03:51:06 +00:00
diff = "0.1"
log = "0.3"
env_logger = "0.4"
getopts = "0.2"
[target.'cfg(unix)'.dependencies]
libc = "0.2.11"
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.2"
winapi = "0.2.7"