Update tracing to 0.1.25 * Update tracing from 0.1.18 to 0.1.25 * Update tracing-subscriber from 0.2.13 to 0.2.16 * Update tracing-tree from 0.1.6 to 0.1.8 * Add pin-project-lite to the list of allowed dependencies (it is now a direct dependency of tracing).
27 lines
649 B
TOML
27 lines
649 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "compiletest"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
colored = "2"
|
|
diff = "0.1.10"
|
|
unified-diff = "0.2.1"
|
|
getopts = "0.2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
|
|
regex = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rustfix = "0.5.0"
|
|
lazy_static = "1.0"
|
|
walkdir = "2"
|
|
glob = "0.3.0"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
miow = "0.3"
|
|
winapi = { version = "0.3", features = ["winerror"] }
|