diff --git a/Cargo.lock b/Cargo.lock index 9b17812..c611c04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -260,18 +260,18 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.41" +version = "4.5.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9" +checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.41" +version = "4.5.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d" +checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966" dependencies = [ "anstream", "anstyle", @@ -575,9 +575,9 @@ dependencies = [ [[package]] name = "fast-glob" -version = "0.4.5" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39ea3f6bbcf4dbe2076b372186fc7aeecd5f6f84754582e56ee7db262b15a6f0" +checksum = "3d26eec0ae9682c457cb0f85de67ad417b716ae852736a5d94c2ad6e92a997c9" dependencies = [ "arrayvec", ] @@ -921,7 +921,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2", + "socket2 0.5.10", "system-configuration", "tokio", "tower-service", @@ -1356,15 +1356,15 @@ dependencies = [ [[package]] name = "napi-build" -version = "2.2.2" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff539e61c5e3dd4d7d283610662f5d672c2aea0f158df78af694f13dbb3287b" +checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14" [[package]] name = "napi-derive" -version = "3.1.1" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43e61844e0c0bb81e711f2084abe7cff187b03ca21ff8b000cb59bbda61e15a9" +checksum = "7e6d190d5e09d449b2b38127cdcdb7aed860599e492a15c73f977d5d87df69a5" dependencies = [ "convert_case", "ctor", @@ -1376,9 +1376,9 @@ dependencies = [ [[package]] name = "napi-derive-backend" -version = "2.0.2" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7ab19e9b98efb13895f492a2e367ca50c955ac3c4723613af73fdda4011afcc" +checksum = "15158ced16693eaa0c709e4c9768ca08eb56325691e68510db8440d27ccd41d1" dependencies = [ "convert_case", "proc-macro2", @@ -1693,9 +1693,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.38.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8927b0664f5c5a98265138b7e3f90aa19a6b21353182469ace36d4ac527b7b1b" +checksum = "9845d9dccf565065824e69f9f235fafba1587031eda353c1f1561cd6a6be78f4" dependencies = [ "memchr", "serde", @@ -2002,9 +2002,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.141" +version = "1.0.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3" +checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7" dependencies = [ "itoa", "memchr", @@ -2058,6 +2058,16 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "socket2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -2179,9 +2189,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.46.1" +version = "1.47.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" +checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" dependencies = [ "backtrace", "bytes", @@ -2191,9 +2201,9 @@ dependencies = [ "parking_lot", "pin-project-lite", "slab", - "socket2", + "socket2 0.6.0", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/bindings/node/Cargo.toml b/bindings/node/Cargo.toml index 5f61c4b..c364aa1 100644 --- a/bindings/node/Cargo.toml +++ b/bindings/node/Cargo.toml @@ -18,7 +18,7 @@ bench = false [dependencies] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix napi = { version = "3.1.2", default-features = false, features = ["napi4", "async"] } -napi-derive = "3.1.1" +napi-derive = "3.1.2" cpp-linter = { path = "../../cpp-linter" } anyhow = "1.0.98" @@ -26,4 +26,4 @@ anyhow = "1.0.98" openssl-vendored = ["cpp-linter/openssl-vendored"] [build-dependencies] -napi-build = "2.2.2" +napi-build = "2.2.3" diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 4212900..4a42d66 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -19,7 +19,7 @@ bench = false [dependencies] pyo3 = { version = "0.25.1", features = ["extension-module"] } cpp-linter = { path = "../../cpp-linter" } -tokio = "1.46.1" +tokio = "1.47.1" [features] openssl-vendored = ["cpp-linter/openssl-vendored"] diff --git a/cpp-linter/Cargo.toml b/cpp-linter/Cargo.toml index f7a321e..66a10de 100644 --- a/cpp-linter/Cargo.toml +++ b/cpp-linter/Cargo.toml @@ -16,22 +16,22 @@ license.workspace = true [dependencies] anyhow = "1.0.98" chrono = "0.4.41" -clap = "4.5.41" +clap = "4.5.42" colored = "3.0.0" -fast-glob = "0.4.5" +fast-glob = "1.0.0" futures = "0.3.31" git2 = "0.20.2" lenient_semver = "0.4.2" log = { version = "0.4.27", features = ["std"] } openssl = { version = "0.10", features = ["vendored"], optional = true } openssl-probe = { version = "0.1", optional = true } -quick-xml = {version = "0.38.0", features = ["serialize"]} +quick-xml = {version = "0.38.1", features = ["serialize"]} regex = "1.11.1" reqwest = "0.12.22" semver = "1.0.26" serde = { version = "1.0.219", features = ["derive"] } -serde_json = "1.0.141" -tokio = { version = "1.46.1", features = ["macros", "rt-multi-thread"]} +serde_json = "1.0.142" +tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"]} tokio-macros = "2.5.0" tokio-stream = "0.1.17" which = "8.0.0"