]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/Cargo.toml
Rollup merge of #85791 - CDirkx:is_unicast, r=joshtriplett
[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 colored = "2"
9 diff = "0.1.10"
10 unified-diff = "0.2.1"
11 getopts = "0.2"
12 tracing = "0.1"
13 tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
14 regex = "1.0"
15 serde = { version = "1.0", features = ["derive"] }
16 serde_json = "1.0"
17 rustfix = "0.5.0"
18 lazy_static = "1.0"
19 walkdir = "2"
20 glob = "0.3.0"
21
22 [target.'cfg(unix)'.dependencies]
23 libc = "0.2"
24
25 [target.'cfg(windows)'.dependencies]
26 miow = "0.3"
27 winapi = { version = "0.3", features = ["winerror"] }