]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/Cargo.toml
Rollup merge of #100296 - BlackHoleFox:os-error-aliases, r=thomcc
[rust.git] / src / tools / compiletest / Cargo.toml
1 [package]
2 name = "compiletest"
3 version = "0.0.0"
4 edition = "2021"
5
6 [dependencies]
7 colored = "2"
8 diff = "0.1.10"
9 unified-diff = "0.2.1"
10 getopts = "0.2"
11 tracing = "0.1"
12 tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
13 regex = "1.0"
14 serde = { version = "1.0", features = ["derive"] }
15 serde_json = "1.0"
16 rustfix = "0.6.0"
17 lazy_static = "1.0"
18 walkdir = "2"
19 glob = "0.3.0"
20 lazycell = "1.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"] }