diff --git a/Cargo.lock b/Cargo.lock index 9708413..3240d4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,9 +1034,9 @@ dependencies = [ [[package]] name = "napi" -version = "3.6.1" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3af30fe8e799dda3a555c496c59e960e4cff1e931b63acbaf3a3b25d9fad22b6" +checksum = "f27a163b545fd2184d2efdccf3d3df56acdb63465f2fcfebcaee0463c1e91783" dependencies = [ "bitflags", "ctor", @@ -1423,9 +1423,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.24" +version = "0.12.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" +checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f" dependencies = [ "base64", "bytes", @@ -1859,9 +1859,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ "bitflags", "bytes", diff --git a/bindings/node/Cargo.toml b/bindings/node/Cargo.toml index 146dc08..f98b2d9 100644 --- a/bindings/node/Cargo.toml +++ b/bindings/node/Cargo.toml @@ -17,7 +17,7 @@ bench = false [dependencies] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix -napi = { version = "3.6.1", default-features = false, features = ["napi4", "async"] } +napi = { version = "3.7.0", default-features = false, features = ["napi4", "async"] } napi-derive = "3.4.0" cpp-linter = { path = "../../cpp-linter" } anyhow = "1.0.100" diff --git a/cpp-linter/Cargo.toml b/cpp-linter/Cargo.toml index 96c035c..b248be5 100644 --- a/cpp-linter/Cargo.toml +++ b/cpp-linter/Cargo.toml @@ -24,7 +24,7 @@ git2 = "0.20.3" log = { version = "0.4.29", features = ["std"] } quick-xml = { version = "0.38.4", features = ["serialize"] } regex = "1.12.2" -reqwest = "0.12.24" +reqwest = "0.12.26" semver = "1.0.27" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145"