Skip to content

Commit 50fcf0b

Browse files
Bump the cargo group with 6 updates
Bumps the cargo group with 6 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.94` | | [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` | | [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` | | [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` | | [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.16` | `0.1.17` | | [napi-derive](https://github.com/napi-rs/napi-rs) | `2.16.12` | `2.16.13` | Updates `anyhow` from 1.0.93 to 1.0.94 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.93...1.0.94) Updates `chrono` from 0.4.38 to 0.4.39 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](chronotope/chrono@v0.4.38...v0.4.39) Updates `clap` from 4.5.21 to 4.5.23 - [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.21...clap_complete-v4.5.23) Updates `tokio` from 1.41.1 to 1.42.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.41.1...tokio-1.42.0) Updates `tokio-stream` from 0.1.16 to 0.1.17 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-stream-0.1.16...tokio-stream-0.1.17) Updates `napi-derive` from 2.16.12 to 2.16.13 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/[email protected]@2.16.13) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: tokio-stream dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: napi-derive dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 98fbbdc commit 50fcf0b

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

Cargo.lock

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

bindings/node/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ crate-type = ["cdylib"]
1717
[dependencies]
1818
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1919
napi = { version = "2.16.13", default-features = false, features = ["napi4", "async"] }
20-
napi-derive = "2.12.2"
20+
napi-derive = "2.16.13"
2121
cpp-linter = { path = "../../cpp-linter" }
22-
anyhow = "1.0.93"
22+
anyhow = "1.0.94"
2323

2424
[features]
2525
openssl-vendored = ["cpp-linter/openssl-vendored"]

bindings/python/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ crate-type = ["cdylib"]
1818
[dependencies]
1919
pyo3 = { version = "0.23.3", features = ["extension-module"] }
2020
cpp-linter = { path = "../../cpp-linter" }
21-
tokio = "1.41.1"
21+
tokio = "1.42.0"
2222

2323
[features]
2424
openssl-vendored = ["cpp-linter/openssl-vendored"]

cpp-linter/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ license.workspace = true
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
anyhow = "1.0.93"
18-
chrono = "0.4.38"
19-
clap = "4.5.21"
17+
anyhow = "1.0.94"
18+
chrono = "0.4.39"
19+
clap = "4.5.23"
2020
colored = "2.1.0"
2121
fast-glob = "0.4.0"
2222
futures = "0.3.31"
@@ -31,9 +31,9 @@ semver = "1.0.23"
3131
serde = { version = "1.0.215", features = ["derive"] }
3232
serde-xml-rs = "0.6.0"
3333
serde_json = "1.0.133"
34-
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"]}
34+
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"]}
3535
tokio-macros = "2.4.0"
36-
tokio-stream = "0.1.16"
36+
tokio-stream = "0.1.17"
3737
which = "7.0.0"
3838

3939
[dev-dependencies]

0 commit comments

Comments
 (0)