]> git.lizzy.rs Git - rust.git/blob - rustfmt-core/Cargo.toml
b1ef2edd3455a03e5960de7e125ace4ed3b9a181
[rust.git] / rustfmt-core / Cargo.toml
1 [package]
2 name = "rustfmt-core"
3 version = "0.4.0"
4 authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
5 description = "A core library of rustfmt"
6 repository = "https://github.com/rust-lang-nursery/rustfmt"
7 readme = "README.md"
8 license = "Apache-2.0/MIT"
9 categories = ["development-tools"]
10
11 [lib]
12 doctest = false
13
14 [dependencies]
15 derive-new = "0.5"
16 diff = "0.1"
17 log = "0.3"
18 regex = "0.2"
19 rustc-ap-syntax = "29.0.0"
20 rustc-ap-rustc_errors = "29.0.0"
21 rustfmt-config = "0.4.0"
22 term = "0.4"
23 unicode-segmentation = "1.0.0"
24
25 [dev-dependencies]
26 lazy_static = "1.0.0"
27
28 [target.'cfg(unix)'.dependencies]
29 libc = "0.2.11"
30
31 [target.'cfg(windows)'.dependencies]
32 kernel32-sys = "0.2.2"
33 winapi = "0.2.7"