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.
15 lines
288 B
TOML
15 lines
288 B
TOML
[package]
|
|
name = "rustc_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
synstructure = "0.13.0"
|
|
# FIXME(Nilstrieb): Updating this causes changes in the diagnostics output.
|
|
syn = { version = "=2.0.8", features = ["full"] }
|
|
proc-macro2 = "1"
|
|
quote = "1"
|