Skip to content

Commit

Permalink
attributes: remove unnecessary syn features (#928)
Browse files Browse the repository at this point in the history
This PR removes the "derive" feature, which is not used.

The "extra-traits" flag could be eliminated, but at the cost of 
removing `Debug` implementations for a few structs.
  • Loading branch information
jhpratt authored Aug 14, 2020
1 parent e9b6645 commit 9fa878f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async-await = []

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


Expand Down

0 comments on commit 9fa878f

Please sign in to comment.