Skip to content

Commit

Permalink
[2.0.1]: Pin syn version to =1.0.57
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Kuzyakov committed Jan 14, 2021
1 parent 51b41c3 commit cadf4aa
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 35 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions examples/fungible-token/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions examples/status-message-collections/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions examples/status-message/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions near-sdk-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "near-sdk-core"
version = "2.0.0"
version = "2.0.1"
authors = ["Near Inc <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -13,6 +13,6 @@ Core part of the library for writing NEAR smart contracts.

[dependencies]
proc-macro2 = "1.0"
syn = {version = "1.0.14", 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 = [] }
6 changes: 3 additions & 3 deletions near-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "near-sdk-macros"
version = "2.0.0"
version = "2.0.1"
authors = ["Near Inc <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -15,9 +15,9 @@ Main macro of the library for writing NEAR smart contracts.
proc-macro = true

[dependencies]
near-sdk-core = { path = "../near-sdk-core", version = "2.0.0"}
near-sdk-core = { path = "../near-sdk-core", version = "2.0.1"}
proc-macro2 = "1.0"
syn = {version = "1.0.14", features = ["full", "fold", "visit"] }
syn = {version = "=1.0.57", features = ["full", "fold", "visit"] }
quote = "1.0"


4 changes: 2 additions & 2 deletions near-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "near-sdk"
version = "2.0.0"
version = "2.0.1"
authors = ["Near Inc <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -20,7 +20,7 @@ path = "compilation_tests/all.rs"
# Provide near_bidgen macros.
serde = { version = "1", features = ["derive"] }
serde_json = "1"
near-sdk-macros = { path = "../near-sdk-macros", version = "2.0.0"}
near-sdk-macros = { path = "../near-sdk-macros", version = "2.0.1"}
borsh = "0.7.0"
bs58 = "0.3"
base64 = "0.11"
Expand Down

0 comments on commit cadf4aa

Please sign in to comment.