mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
171be8ce94
There's currently a deadlock with tracing when RUSTC_LOG is enabled. Downgrade tracing-core for now to avoid blocking the other updates. syns upgrades cause some nontrivial changes in the diagnostics derive tests, which are best dealt with in another PR.
17 lines
492 B
TOML
17 lines
492 B
TOML
[package]
|
|
name = "rustc_log"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tracing = "0.1.28"
|
|
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
|
|
tracing-tree = "0.2.0"
|
|
tracing-core = "=0.1.30" # FIXME(Nilstrieb) tracing has a deadlock: https://github.com/tokio-rs/tracing/issues/2635
|
|
|
|
[dev-dependencies]
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
[features]
|
|
max_level_info = ['tracing/max_level_info']
|