]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/Cargo.toml
Auto merge of #102458 - JohnTitor:stabilize-instruction-set, r=oli-obk
[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 miropt-test-tools = { path = "../miropt-test-tools" }
12 tracing = "0.1"
13 tracing-subscriber = { version = "0.3.3", 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.6.0"
18 lazy_static = "1.0"
19 walkdir = "2"
20 glob = "0.3.0"
21 lazycell = "1.3.0"
22
23 [target.'cfg(unix)'.dependencies]
24 libc = "0.2"
25
26 [target.'cfg(windows)'.dependencies]
27 miow = "0.3"
28 winapi = { version = "0.3", features = ["winerror"] }