]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Use the log/env_logger crates from crates.io
[rust.git] / Cargo.toml
1 [package]
2
3 name = "rustfmt"
4 version = "0.0.1"
5 authors = ["Nicholas Cameron <nrc@ncameron.org>"]
6 description = "Tool to find and fix Rust formatting issues"
7 repository = "https://github.com/nick29581/rustfmt"
8 readme = "README.md"
9 license = "Apache-2.0/MIT"
10
11 [dependencies]
12 toml = "0.1.20"
13 rustc-serialize = "0.3.14"
14 unicode-segmentation = "0.1.2"
15 regex = "0.1.41"
16 term = "0.2.11"
17 strings = { version = "0.0.1", git = "https://github.com/nrc/strings.rs.git" }
18 diff = { git = "https://github.com/utkarshkukreti/diff.rs.git" }
19 log = "0.3.2"
20 env_logger = "0.3.1"
21
22 [dev-dependencies]