mirror of
https://github.com/loot/loot-condition-interpreter.git
synced 2026-07-27 14:16:09 -07:00
Use more permissive dependency version selectors
So that dependents have more freedom in choosing versions in their dependency tree. I've run the tests using the oldest versions allowed by the new specifiers, and they all pass. The current release of esplugin unnecessarily requires at least unicase v2.8.1, but with that fixed, unicase v2.0.0 is fine.
This commit is contained in:
+8
-8
@@ -8,16 +8,16 @@ license.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
crc32fast = "1.5.0"
|
||||
esplugin = "6.1.2"
|
||||
nom = "8.0.0"
|
||||
pelite = "0.10.0"
|
||||
regex = "1.11.2"
|
||||
unicase = "2.8.1"
|
||||
crc32fast = "1"
|
||||
esplugin = "6"
|
||||
nom = "8"
|
||||
pelite = ">= 0.9.0, < 0.11"
|
||||
regex = ">= 0.2.7, < 2"
|
||||
unicase = "2"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.7.0"
|
||||
tempfile = "3.22.0"
|
||||
criterion = ">= 0.1.2, < 0.8"
|
||||
tempfile = "3"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
Reference in New Issue
Block a user