19 lines
501 B
TOML
19 lines
501 B
TOML
[package]
|
|
name = "git-rustfmt"
|
|
version = "0.4.0"
|
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
|
|
description = "Run rustfmt against git diff"
|
|
repository = "https://github.com/rust-lang-nursery/rustfmt"
|
|
readme = "README.md"
|
|
license = "Apache-2.0/MIT"
|
|
categories = ["development-tools"]
|
|
|
|
[[bin]]
|
|
name = "git-rustfmt"
|
|
|
|
[dependencies]
|
|
env_logger = "0.4"
|
|
getopts = "0.2"
|
|
log = "0.3"
|
|
rustfmt-config = { path = "../rustfmt-config" }
|
|
rustfmt-core = { path = "../rustfmt-core" } |