Skip to content

Commit

Permalink
server: Fix missing feature flag on syn dependency
Browse files Browse the repository at this point in the history
Without this, `cargo check` on just `svix-server_derive` was failing.
  • Loading branch information
svix-jplatte committed Mar 11, 2024
1 parent 0caadd4 commit f927e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/svix-server_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.78"
quote = "1.0.15"
syn = "2.0.48"
syn = { version = "2.0.48", features = ["full"] }

[lints]
workspace = true

0 comments on commit f927e67

Please sign in to comment.