diff --git a/Cargo.lock b/Cargo.lock index 9708413..4f68134 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,9 +1034,9 @@ dependencies = [ [[package]] name = "napi" -version = "3.6.1" +version = "3.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3af30fe8e799dda3a555c496c59e960e4cff1e931b63acbaf3a3b25d9fad22b6" +checksum = "b2e120bab0f106264eec9f55c3d339a0fad90cc46e0905983b1b53be19e42be6" dependencies = [ "bitflags", "ctor", @@ -1056,9 +1056,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1" [[package]] name = "napi-derive" -version = "3.4.0" +version = "3.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47cffa09ea668c4cc5d7b1198780882e28780ed1804a903b80680725426223d9" +checksum = "6e9161f3ef917aa415ee0bf123656ccee609db7752582b213d59d9e69f37586a" dependencies = [ "convert_case", "ctor", @@ -1070,9 +1070,9 @@ dependencies = [ [[package]] name = "napi-derive-backend" -version = "4.0.0" +version = "4.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e186227ec22f4675267a176d98dffecb27e6cc88926cbb7efb5427268565c0f" +checksum = "724788c8ae2e79ba98905ced435d414c01e1444c91bf43abab455d62eb565b1c" dependencies = [ "convert_case", "proc-macro2", @@ -1423,9 +1423,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.24" +version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ "base64", "bytes", @@ -1615,9 +1615,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" dependencies = [ "itoa", "memchr", @@ -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..d35ce0e 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.6.1", default-features = false, features = ["napi4", "async"] } -napi-derive = "3.4.0" +napi = { version = "3.7.1", default-features = false, features = ["napi4", "async"] } +napi-derive = "3.4.1" cpp-linter = { path = "../../cpp-linter" } anyhow = "1.0.100" diff --git a/cpp-linter/Cargo.toml b/cpp-linter/Cargo.toml index 96c035c..252f4f3 100644 --- a/cpp-linter/Cargo.toml +++ b/cpp-linter/Cargo.toml @@ -24,10 +24,10 @@ 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.28" semver = "1.0.27" serde = { version = "1.0.228", features = ["derive"] } -serde_json = "1.0.145" +serde_json = "1.0.146" tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] } tokio-macros = "2.5.0" tokio-stream = "0.1.17"