rust/Cargo.toml

28 lines
654 B
TOML
Raw Normal View History

[package]
name = "rustfmt"
2016-02-09 05:28:45 +01:00
version = "0.3.0"
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/rust-lang-nursery/rustfmt"
readme = "README.md"
license = "Apache-2.0/MIT"
include = ["src/*.rs", "Cargo.toml"]
[features]
default = ["cargo-fmt"]
cargo-fmt = []
2015-05-23 07:02:59 +02:00
[dependencies]
toml = "0.1.20"
rustc-serialize = "0.3.14"
2015-09-04 05:38:12 +02:00
unicode-segmentation = "0.1.2"
regex = "0.1.41"
term = "0.2.11"
2015-12-13 20:03:58 +01:00
strings = "0.0.1"
2015-12-28 07:10:47 +01:00
diff = "0.1.8"
2016-03-01 23:27:19 +01:00
syntex_syntax = "0.29.1"
log = "0.3.2"
env_logger = "0.3.1"
getopts = "0.2"