]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/Cargo.toml
Auto merge of #89165 - jkugelman:read-to-end-overallocation, r=joshtriplett
[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.2", 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
21 [target.'cfg(unix)'.dependencies]
22 libc = "0.2"
23
24 [target.'cfg(windows)'.dependencies]
25 miow = "0.3"
26 winapi = { version = "0.3", features = ["winerror"] }