From b42cccfb9067e87855e45fed454e44e2bf9c3234 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 02:32:31 +0000 Subject: [PATCH] build(deps): bump the cargo group with 3 updates Bumps the cargo group with 3 updates: [quick-xml](https://github.com/tafia/quick-xml), [napi](https://github.com/napi-rs/napi-rs) and [napi-derive](https://github.com/napi-rs/napi-rs). Updates `quick-xml` from 0.38.4 to 0.39.0 - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.38.4...v0.39.0) Updates `napi` from 3.8.1 to 3.8.2 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/napi-v3.8.1...napi-v3.8.2) Updates `napi-derive` from 3.5.0 to 3.5.1 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/napi-derive-v3.5.0...napi-derive-v3.5.1) --- updated-dependencies: - dependency-name: quick-xml dependency-version: 0.39.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: napi dependency-version: 3.8.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: napi-derive dependency-version: 3.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- bindings/node/Cargo.toml | 4 ++-- cpp-linter/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 08b7e35..21ce12a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1035,9 +1035,9 @@ dependencies = [ [[package]] name = "napi" -version = "3.8.1" +version = "3.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "000f205daae6646003fdc38517be6232af2b150bad4b67bdaf4c5aadb119d738" +checksum = "909805cbad4d569e69b80e101290fe72e92b9742ba9e333b0c1e83b22fb7447b" dependencies = [ "bitflags", "ctor", @@ -1057,9 +1057,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1" [[package]] name = "napi-derive" -version = "3.5.0" +version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97ef4e39564b008771df9a4983e4ea6c1f7fa6ad5252347b6dbf7f347a8f689a" +checksum = "04ba21bbdf40b33496b4ee6eadfc64d17a6a6cde57cd31549117b0882d1fef86" dependencies = [ "convert_case", "ctor", @@ -1071,9 +1071,9 @@ dependencies = [ [[package]] name = "napi-derive-backend" -version = "5.0.0" +version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb0d9a16e3fbfd6397f97e4eaafe9fbefb888a6120dd289dd12869fdb16af372" +checksum = "e9a63791e230572c3218a7acd86ca0a0529fc64294bcbea567cf906d7b04e077" dependencies = [ "convert_case", "proc-macro2", @@ -1332,9 +1332,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.38.4" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +checksum = "f2e3bf4aa9d243beeb01a7b3bc30b77cfe2c44e24ec02d751a7104a53c2c49a1" dependencies = [ "memchr", "serde", diff --git a/bindings/node/Cargo.toml b/bindings/node/Cargo.toml index 98bcba5..9c3fc27 100644 --- a/bindings/node/Cargo.toml +++ b/bindings/node/Cargo.toml @@ -17,8 +17,8 @@ bench = false [dependencies] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix -napi = { version = "3.8.1", default-features = false, features = ["napi4", "async"] } -napi-derive = "3.5.0" +napi = { version = "3.8.2", default-features = false, features = ["napi4", "async"] } +napi-derive = "3.5.1" cpp-linter = { path = "../../cpp-linter" } anyhow = "1.0.100" diff --git a/cpp-linter/Cargo.toml b/cpp-linter/Cargo.toml index ff77736..c59f9d5 100644 --- a/cpp-linter/Cargo.toml +++ b/cpp-linter/Cargo.toml @@ -22,7 +22,7 @@ fast-glob = "1.0.0" futures = "0.3.31" git2 = "0.20.3" log = { version = "0.4.29", features = ["std"] } -quick-xml = { version = "0.38.4", features = ["serialize"] } +quick-xml = { version = "0.39.0", features = ["serialize"] } regex = "1.12.2" reqwest = { version = "0.13.1", default-features = false, features = ["native-tls", "http2", "charset"] } semver = "1.0.27"