]> git.proxmox.com Git - rustc.git/blame - src/tools/compiletest/Cargo.toml
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / tools / compiletest / Cargo.toml
CommitLineData
a7813a04
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "compiletest"
4version = "0.0.0"
9fa01778 5edition = "2018"
a7813a04 6
a7813a04 7[dependencies]
6a06907d 8colored = "2"
041b39d2 9diff = "0.1.10"
6a06907d 10unified-diff = "0.2.1"
041b39d2 11getopts = "0.2"
3dfed10e 12tracing = "0.1"
6a06907d 13tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
b7449926 14regex = "1.0"
48663c56 15serde = { version = "1.0", features = ["derive"] }
0531ce1d 16serde_json = "1.0"
dfeec247 17rustfix = "0.5.0"
b7449926 18lazy_static = "1.0"
0731742a 19walkdir = "2"
3dfed10e 20glob = "0.3.0"
ff7c6d11
XL
21
22[target.'cfg(unix)'.dependencies]
041b39d2 23libc = "0.2"
abe05a73
XL
24
25[target.'cfg(windows)'.dependencies]
0531ce1d
XL
26miow = "0.3"
27winapi = { version = "0.3", features = ["winerror"] }