Skip to content

Commit 42e594c

Browse files
build(deps): bump the cargo group across 1 directory with 8 updates
Bumps the cargo group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.60` | `4.6.0` | | [pyo3](https://github.com/pyo3/pyo3) | `0.28.2` | `0.28.3` | | [semver](https://github.com/dtolnay/semver) | `1.0.27` | `1.0.28` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.26.0` | `3.27.0` | | [tokio](https://github.com/tokio-rs/tokio) | `1.50.0` | `1.51.1` | | [napi](https://github.com/napi-rs/napi-rs) | `3.8.3` | `3.8.4` | | [napi-derive](https://github.com/napi-rs/napi-rs) | `3.5.2` | `3.5.3` | | [zip](https://github.com/zip-rs/zip2) | `8.2.0` | `8.5.1` | Updates `clap` from 4.5.60 to 4.6.0 - [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.60...clap_complete-v4.6.0) Updates `pyo3` from 0.28.2 to 0.28.3 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.28.2...v0.28.3) Updates `semver` from 1.0.27 to 1.0.28 - [Release notes](https://github.com/dtolnay/semver/releases) - [Commits](dtolnay/semver@1.0.27...1.0.28) Updates `tempfile` from 3.26.0 to 3.27.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.26.0...v3.27.0) Updates `tokio` from 1.50.0 to 1.51.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.50.0...tokio-1.51.1) Updates `napi` from 3.8.3 to 3.8.4 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](napi-rs/napi-rs@napi-v3.8.3...napi-v3.8.4) Updates `napi-derive` from 3.5.2 to 3.5.3 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](napi-rs/napi-rs@napi-derive-v3.5.2...napi-derive-v3.5.3) Updates `zip` from 8.2.0 to 8.5.1 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](zip-rs/zip2@v8.2.0...v8.5.1) --- updated-dependencies: - dependency-name: clap dependency-version: 4.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: pyo3 dependency-version: 0.28.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: semver dependency-version: 1.0.28 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tempfile dependency-version: 3.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: tokio dependency-version: 1.51.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: napi dependency-version: 3.8.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: napi-derive dependency-version: 3.5.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: zip dependency-version: 8.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8a2b4f0 commit 42e594c

4 files changed

Lines changed: 48 additions & 48 deletions

File tree

Cargo.lock

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ strip = "symbols"
2222

2323
[workspace.dependencies]
2424
anyhow = "1.0.102"
25-
clap = { version = "4.5.60", features = ["derive"] }
25+
clap = { version = "4.6.0", features = ["derive"] }
2626
colored = "3.1.1"
2727
log = { version = "0.4.29", features = ["std"] }
2828
mockito = "1.7.2"
29-
pyo3 = {version = "0.28.2", features = ["extension-module"] }
29+
pyo3 = {version = "0.28.3", features = ["extension-module"] }
3030
regex = "1.12.3"
3131
reqwest = { version = "0.13.2", default-features = false, features = ["http2", "charset"] }
3232
thiserror = "2.0.18"
33-
semver = "1.0.27"
33+
semver = "1.0.28"
3434
serde = { version = "1.0.228", features = ["derive"] }
3535
serde_json = "1.0.149"
36-
tempfile = "3.26.0"
37-
tokio = "1.50.0"
36+
tempfile = "3.27.0"
37+
tokio = "1.51.1"

bindings/node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ 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 = "3.8.3", default-features = false, features = ["napi4", "async"] }
21-
napi-derive = "3.5.2"
20+
napi = { version = "3.8.4", default-features = false, features = ["napi4", "async"] }
21+
napi-derive = "3.5.3"
2222
cpp-linter = { path = "../../cpp-linter", features = ["bin"] }
2323
anyhow = { workspace = true }
2424

clang-installer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ thiserror = { workspace = true }
3535
tokio = { workspace = true, features = ["macros"], optional = true }
3636
url = "2.5.8"
3737
which = "8.0.2"
38-
zip = { version = "8.2.0", default-features = false, features = ["deflate"] }
38+
zip = { version = "8.5.1", default-features = false, features = ["deflate"] }
3939
tempfile = { workspace = true }
4040

4141
[dev-dependencies]

0 commit comments

Comments
 (0)