3152: Fix patch version of our dependency on syn. r=davidhewitt a=adamreichold

Closes #3151 

Co-authored-by: Adam Reichold <adam.reichold@t-online.de>
This commit is contained in:
bors[bot] 2023-05-10 20:32:33 +00:00 committed by GitHub
commit edb9522331
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
Correct dependency on syn to version 1.0.85 instead of the incorrect version 1.0.56.

View file

@ -18,7 +18,7 @@ quote = { version = "1", default-features = false }
proc-macro2 = { version = "1", default-features = false }
[dependencies.syn]
version = "1.0.56"
version = "1.0.85"
default-features = false
features = ["derive", "parsing", "printing", "clone-impls", "full", "extra-traits"]

View file

@ -21,5 +21,5 @@ abi3 = ["pyo3-macros-backend/abi3"]
[dependencies]
proc-macro2 = { version = "1", default-features = false }
quote = "1"
syn = { version = "1.0.56", features = ["full", "extra-traits"] }
syn = { version = "1.0.85", features = ["full", "extra-traits"] }
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.18.3" }