Fix patch version of our dependency on syn.
This commit is contained in:
parent
c7d541b9ad
commit
91cdfe4f7d
|
@ -0,0 +1 @@
|
|||
Correct dependency on syn to version 1.0.85 instead of the incorrect version 1.0.56.
|
|
@ -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"]
|
||||
|
||||
|
|
|
@ -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" }
|
||||
|
|
Loading…
Reference in New Issue