diff --git a/Cargo.lock b/Cargo.lock index 08b7e35..410bcda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -148,9 +148,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" dependencies = [ "iana-time-zone", "js-sys", @@ -216,11 +216,11 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "colored" -version = "3.0.0" +version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e" +checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -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", @@ -2114,15 +2114,6 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets 0.52.6", -] - [[package]] name = "windows-sys" version = "0.60.2" 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..1efbbc3 100644 --- a/cpp-linter/Cargo.toml +++ b/cpp-linter/Cargo.toml @@ -15,14 +15,14 @@ license.workspace = true [dependencies] anyhow = "1.0.100" -chrono = "0.4.42" +chrono = "0.4.43" clap = { version = "4.5.54", features = ["derive"] } -colored = "3.0.0" +colored = "3.1.1" 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"