]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/Cargo.toml
Merge commit 'b20d4c155d2fe3a8391f86dcf9a8c49e17188703' into clippyup
[rust.git] / src / tools / compiletest / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "compiletest"
4 version = "0.0.0"
5 edition = "2018"
6
7 [dependencies]
8 diff = "0.1.10"
9 getopts = "0.2"
10 tracing = "0.1"
11 tracing-subscriber = { version = "0.2.13", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
12 regex = "1.0"
13 serde = { version = "1.0", features = ["derive"] }
14 serde_json = "1.0"
15 rustfix = "0.5.0"
16 lazy_static = "1.0"
17 walkdir = "2"
18 glob = "0.3.0"
19
20 [target.'cfg(unix)'.dependencies]
21 libc = "0.2"
22
23 [target.'cfg(windows)'.dependencies]
24 miow = "0.3"
25 winapi = { version = "0.3", features = ["winerror"] }