Skip to content

Commit b323ef6

Browse files
Bump the cargo group across 1 directory with 7 updates
Bumps the cargo group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.30` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.68` | `0.10.71` | | [openssl-probe](https://github.com/alexcrichton/openssl-probe) | `0.1.5` | `0.1.6` | | [serde_json](https://github.com/serde-rs/json) | `1.0.137` | `1.0.138` | | [which](https://github.com/harryfei/which-rs) | `7.0.1` | `7.0.2` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.15.0` | `3.17.1` | | [napi](https://github.com/napi-rs/napi-rs) | `2.16.13` | `2.16.16` | Updates `clap` from 4.5.27 to 4.5.30 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.5.27...clap_complete-v4.5.30) Updates `openssl` from 0.10.68 to 0.10.71 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](sfackler/rust-openssl@openssl-v0.10.68...openssl-v0.10.71) Updates `openssl-probe` from 0.1.5 to 0.1.6 - [Commits](alexcrichton/openssl-probe@0.1.5...0.1.6) Updates `serde_json` from 1.0.137 to 1.0.138 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.137...v1.0.138) Updates `which` from 7.0.1 to 7.0.2 - [Release notes](https://github.com/harryfei/which-rs/releases) - [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md) - [Commits](harryfei/which-rs@7.0.1...7.0.2) Updates `tempfile` from 3.15.0 to 3.17.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.15.0...v3.17.1) Updates `napi` from 2.16.13 to 2.16.16 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/[email protected]@2.16.16) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: openssl-probe dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: which dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: napi dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9d782b5 commit b323ef6

File tree

3 files changed

+58
-28
lines changed

3 files changed

+58
-28
lines changed

Cargo.lock

+53-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bench = false
1717

1818
[dependencies]
1919
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
20-
napi = { version = "2.16.13", default-features = false, features = ["napi4", "async"] }
20+
napi = { version = "2.16.16", default-features = false, features = ["napi4", "async"] }
2121
napi-derive = "2.16.13"
2222
cpp-linter = { path = "../../cpp-linter" }
2323
anyhow = "1.0.95"

cpp-linter/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ license.workspace = true
1616
[dependencies]
1717
anyhow = "1.0.95"
1818
chrono = "0.4.39"
19-
clap = "4.5.27"
19+
clap = "4.5.30"
2020
colored = "3.0.0"
2121
fast-glob = "0.4.3"
2222
futures = "0.3.31"
@@ -30,16 +30,16 @@ regex = "1.11.1"
3030
reqwest = "0.12.12"
3131
semver = "1.0.25"
3232
serde = { version = "1.0.217", features = ["derive"] }
33-
serde_json = "1.0.137"
33+
serde_json = "1.0.138"
3434
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"]}
3535
tokio-macros = "2.4.0"
3636
tokio-stream = "0.1.17"
37-
which = "7.0.1"
37+
which = "7.0.2"
3838

3939
[dev-dependencies]
4040
criterion = { version = "2.7.2", package = "codspeed-criterion-compat", features=["async_tokio"] }
4141
mockito = "1.6.1"
42-
tempfile = "3.15.0"
42+
tempfile = "3.17.1"
4343

4444
[features]
4545
openssl-vendored = ["dep:openssl", "dep:openssl-probe"]

0 commit comments

Comments
 (0)