Skip to content

Commit

Permalink
Enable "full" feature for syn
Browse files Browse the repository at this point in the history
This feature was previously required to compile,
but not specified. That worked because some other
dependency enabled it, but we must not rely on that.

Signed-off-by: Simon Wülker <[email protected]>
  • Loading branch information
simonwuelker committed Jan 21, 2025
1 parent 24df05e commit 734a73e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions match_token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
syn = "2"
syn = { version = "2", features = ["full"] }
quote = "1"
proc-macro2 = "1"

[lib]
proc-macro = true
proc-macro = true

0 comments on commit 734a73e

Please sign in to comment.