Fix minimum supported syn version

This commit is contained in:
Paolo Barbolini 2025-03-22 11:21:41 +01:00 committed by René Kijewski
parent f564e724e1
commit 1df437ec94

View File

@ -27,7 +27,7 @@ serde_derive = { version = "1.0", optional = true }
memchr = "2"
quote = { version = "1", default-features = false }
rustc-hash = "2.0.0"
syn = { version = "2.0.3", default-features = false, features = ["clone-impls", "derive", "parsing", "printing"] }
syn = { version = "2.0.41", default-features = false, features = ["clone-impls", "derive", "parsing", "printing"] }
# in `askama_derive_standalone` we opt out of the default features, because we need no native `proc-macro` support
proc-macro2 = "1"
@ -36,7 +36,7 @@ proc-macro2 = "1"
console = "0.15.8"
prettyplease = "0.2.20"
similar = "2.6.0"
syn = { version = "2.0.3", features = ["full"] }
syn = { version = "2.0.41", features = ["full"] }
# must be the same feature list as for askama
[features]