Skip to content

Commit

Permalink
chore(napi-derive): pin minimum usable version of dependency syn (#1293)
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-if committed Sep 1, 2022
1 parent 76fd7b7 commit 26f6c92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/backend/Cargo.toml
Expand Up @@ -21,7 +21,7 @@ type-def = ["regex", "once_cell"]
convert_case = "0.5"
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["fold", "full", "extra-traits"] }
syn = { version = "1.0.61", features = ["fold", "full", "extra-traits"] }

[dependencies.regex]
optional = true
Expand Down
2 changes: 1 addition & 1 deletion crates/macro/Cargo.toml
Expand Up @@ -26,7 +26,7 @@ convert_case = "0.5"
napi-derive-backend = { version = "1.0.37", path = "../backend" }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["fold", "full", "extra-traits"] }
syn = { version = "1.0.61", features = ["fold", "full", "extra-traits"] }

[lib]
proc-macro = true

0 comments on commit 26f6c92

Please sign in to comment.