]> git.proxmox.com Git - rustc.git/blame_incremental - src/tools/compiletest/Cargo.toml
New upstream version 1.70.0+dfsg1
[rustc.git] / src / tools / compiletest / Cargo.toml
... / ...
CommitLineData
1[package]
2name = "compiletest"
3version = "0.0.0"
4edition = "2021"
5
6[dependencies]
7colored = "2"
8diff = "0.1.10"
9unified-diff = "0.2.1"
10getopts = "0.2"
11miropt-test-tools = { path = "../miropt-test-tools" }
12build_helper = { path = "../build_helper" }
13tracing = "0.1"
14tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
15regex = "1.0"
16serde = { version = "1.0", features = ["derive"] }
17serde_json = "1.0"
18rustfix = "0.6.0"
19once_cell = "1.16.0"
20walkdir = "2"
21glob = "0.3.0"
22lazycell = "1.3.0"
23
24[target.'cfg(unix)'.dependencies]
25libc = "0.2"
26
27[target.'cfg(windows)'.dependencies]
28miow = "0.5"
29
30[target.'cfg(windows)'.dependencies.windows]
31version = "0.46.0"
32features = [
33 "Win32_Foundation",
34 "Win32_System_Diagnostics_Debug",
35]