mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
20 lines
540 B
TOML
20 lines
540 B
TOML
[package]
|
|
name = "rustfmt-bin"
|
|
version = "0.4.0"
|
|
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"
|
|
categories = ["development-tools"]
|
|
|
|
[[bin]]
|
|
name = "rustfmt"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
env_logger = "0.4"
|
|
getopts = "0.2"
|
|
rustfmt-config = { path = "../rustfmt-config" }
|
|
rustfmt-core = { path = "../rustfmt-core" } |