diff --git a/Cargo.lock b/Cargo.lock index f2eb8739..fee727c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -187,6 +187,12 @@ dependencies = [ "dtor", ] +[[package]] +name = "ctor" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "400a21f1014a968ec518c7ccdf9b4a4ed0cac8c56ccb6d604f8b91f00110501e" + [[package]] name = "ctor-proc-macro" version = "0.0.7" @@ -708,12 +714,12 @@ dependencies = [ [[package]] name = "napi" -version = "3.8.2" +version = "3.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "909805cbad4d569e69b80e101290fe72e92b9742ba9e333b0c1e83b22fb7447b" +checksum = "8e55037284865448ecf329baa86a4d05401f647ebde99f5747b640d32c2c5226" dependencies = [ "bitflags", - "ctor", + "ctor 0.11.1", "futures", "napi-build", "napi-sys", @@ -734,7 +740,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04ba21bbdf40b33496b4ee6eadfc64d17a6a6cde57cd31549117b0882d1fef86" dependencies = [ "convert_case", - "ctor", + "ctor 0.6.3", "napi-derive-backend", "proc-macro2", "quote", diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml index 0db17335..83f8f625 100644 --- a/nodejs/Cargo.toml +++ b/nodejs/Cargo.toml @@ -15,7 +15,7 @@ libloot = { path = ".." } libloot-ffi-errors = { path = "../ffi-errors" } # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix -napi = { version = "3.1.6", default-features = false, features = ["napi4"] } +napi = { version = "3.8.6", default-features = false, features = ["napi4"] } napi-derive = "3.2.2" [build-dependencies]