Skip to content

Commit

Permalink
fix: specify a minimum version for syn as 2.0.81 (#320)
Browse files Browse the repository at this point in the history
* Specify a minimum version for `syn` as `2.0.81`

* Update `syn` version in `[dependencies]`
  • Loading branch information
nategraf authored Nov 13, 2024
1 parent d521f76 commit c966ddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions borsh-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ exclude = ["*.snap"]
proc-macro = true

[dependencies]
syn = { version = "2", features = ["full", "fold"] }
syn = { version = "2.0.81", features = ["full", "fold"] }
proc-macro-crate = "3"
proc-macro2 = "1"
quote = "1"
once_cell = "1.18.0"

[dev-dependencies]
syn = { version = "2", features = ["full", "fold", "parsing"] }
syn = { version = "2.0.81", features = ["full", "fold", "parsing"] }
prettyplease = "0.2.9"
insta = "1.29.0"

Expand Down

0 comments on commit c966ddc

Please sign in to comment.