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:
Oliver Hamlet
2025-09-28 16:26:13 +01:00
parent 940aa22f26
commit bdeeaee9e9
+8 -8
View File
@@ -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