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 committed Feb 28, 2022
1 parent 79e19be commit 5f80628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-attributes/Cargo.toml
Expand Up @@ -35,7 +35,7 @@ proc-macro = true

[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 5f80628

Please sign in to comment.