mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
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:
+3
-3
@@ -8,13 +8,13 @@ edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
cxx = { version = "1.0", features = ["c++17"] }
|
||||
delegate = "0.13.4"
|
||||
cxx = { version = "1.0.142", features = ["c++17"] }
|
||||
delegate = ">= 0.5.1, < 0.14"
|
||||
libloot = { path = ".." }
|
||||
libloot-ffi-errors = { path = "../ffi-errors" }
|
||||
|
||||
[build-dependencies]
|
||||
cxx-build = "1.0"
|
||||
cxx-build = "1.0.142"
|
||||
|
||||
[lib]
|
||||
crate-type = ["staticlib"]
|
||||
|
||||
Reference in New Issue
Block a user