Be more permissive with dependency versions

The tests all pass when using the bottom of the new version ranges on Windows.

The unicase dependency's lower bound is limited by rust-ini even after using the latest master branch versions of esplugin, libloadorder and loot-condition-interpreter.

The proc-macro2 and quote dependencies' lower bounds are limited by pyo3's dependency tree.

The nodejs wrapper's dependencies haven't been touched.
This commit is contained in:
Oliver Hamlet
2025-09-29 21:25:10 +01:00
parent fc8ab80552
commit 08a0487880
4 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -8,9 +8,9 @@ edition.workspace = true
license = "MIT"
[dependencies]
proc-macro2 = "1.0.101"
quote = "1.0.40"
syn = { version = "2.0.106", features = ["full"] }
proc-macro2 = "1.0.83"
quote = "1.0.35"
syn = { version = ">= 1.0.0, < 3", features = ["full"] }
[lib]
proc-macro = true