Skip to content

Commit

Permalink
attributes: use correct minimal version of syn (#1960)
Browse files Browse the repository at this point in the history
This sets the minimal version of `syn` to `1.0.43` - the actual minimal
version that is required to build `tracing-attributes`.

See this build failure in Tokio:
https://github.com/tokio-rs/tokio/runs/5344598894?check_suite_focus=true

CC: tokio-rs/tokio#4513
  • Loading branch information
udoprog authored and hawkw committed Mar 8, 2022
1 parent cc1f155 commit 5de7f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-attributes/Cargo.toml
Expand Up @@ -40,7 +40,7 @@ async-await = []

[dependencies]
proc-macro2 = "1"
syn = { version = "1", default-features = false, features = ["full", "parsing", "printing", "visit", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
syn = { version = "1.0.43", default-features = false, features = ["full", "parsing", "printing", "visit", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
quote = "1"

[dev-dependencies]
Expand Down

0 comments on commit 5de7f64

Please sign in to comment.