rust/Cargo.toml

57 lines
1,014 B
TOML
Raw Normal View History

[package]
2017-06-14 03:57:31 +02:00
name = "rustfmt-nightly"
2017-12-23 04:25:42 +01:00
version = "0.3.4"
2017-03-07 22:18:10 +01: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 18:44:44 +01:00
categories = ["development-tools"]
2017-03-30 04:49:10 +02:00
[lib]
doctest = false
2017-06-14 03:57:31 +02:00
[[bin]]
name = "rustfmt"
[[bin]]
name = "cargo-fmt"
[[bin]]
name = "rustfmt-format-diff"
2017-11-07 19:59:14 +01:00
[[bin]]
2018-01-03 14:15:45 +01:00
name = "git-rustfmt"
2017-11-07 19:59:14 +01:00
[features]
default = ["cargo-fmt", "rustfmt-format-diff"]
cargo-fmt = []
rustfmt-format-diff = []
2015-05-23 07:02:59 +02: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 05:51:06 +02:00
term = "0.4"
diff = "0.1"
log = "0.3"
env_logger = "0.4"
getopts = "0.2"
2017-11-06 13:43:17 +01:00
derive-new = "0.5"
2017-12-23 04:25:42 +01:00
cargo_metadata = "0.4"
[dev-dependencies]
lazy_static = "1.0.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.11"
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2.2"
winapi = "0.2.7"