rust/src/tools/compiletest/Cargo.toml

26 lines
615 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "compiletest"
version = "0.0.0"
2019-02-03 10:12:47 +01:00
edition = "2018"
[dependencies]
diff = "0.1.10"
getopts = "0.2"
2020-08-14 08:05:01 +02:00
tracing = "0.1"
tracing-subscriber = { version = "0.2.13", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
2018-08-05 00:24:39 +02:00
regex = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2020-01-14 18:50:55 +01:00
rustfix = "0.5.0"
lazy_static = "1.0"
walkdir = "2"
2020-07-28 15:22:21 +02:00
glob = "0.3.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
miow = "0.3"
winapi = { version = "0.3", features = ["winerror"] }