From 10dd731c7bb26f621951b898b0044c42b308d675 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 15:42:50 +0000 Subject: [PATCH] Bump napi from 3.8.2 to 3.8.6 Bumps [napi](https://github.com/napi-rs/napi-rs) from 3.8.2 to 3.8.6. - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/napi-v3.8.2...napi-v3.8.6) --- updated-dependencies: - dependency-name: napi dependency-version: 3.8.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++---- nodejs/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f2eb87397..fee727c27 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 0db173358..83f8f6259 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]