Skip to content

Commit

Permalink
Fix syn crate pin using = instead of <= (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Kuzyakov authored Jan 30, 2021
1 parent 5972dbc commit 929ef4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion near-sdk-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ Core part of the library for writing NEAR smart contracts.

[dependencies]
proc-macro2 = "1.0"
syn = {version = "<=1.0.57", features = ["full", "fold", "extra-traits", "visit"] }
syn = {version = "=1.0.57", features = ["full", "fold", "extra-traits", "visit"] }
quote = "1.0"
Inflector = { version = "0.11.4", default-features = false, features = [] }
2 changes: 1 addition & 1 deletion near-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true
[dependencies]
near-sdk-core = { path = "../near-sdk-core", version = "2.0.1"}
proc-macro2 = "1.0"
syn = {version = "<=1.0.57", features = ["full", "fold", "visit"] }
syn = {version = "=1.0.57", features = ["full", "fold", "visit"] }
quote = "1.0"


0 comments on commit 929ef4e

Please sign in to comment.