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