Skip to content

Commit 37171fa

Browse files
build(deps): bump the cargo group across 1 directory with 6 updates
Bumps the cargo group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.60` | `4.6.0` | | [fast-glob](https://github.com/oxc-project/fast-glob) | `1.0.0` | `1.0.1` | | [tokio](https://github.com/tokio-rs/tokio) | `1.49.0` | `1.50.0` | | [tokio-macros](https://github.com/tokio-rs/tokio) | `2.6.0` | `2.6.1` | | [which](https://github.com/harryfei/which-rs) | `8.0.0` | `8.0.2` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.26.0` | `3.27.0` | 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 `fast-glob` from 1.0.0 to 1.0.1 - [Release notes](https://github.com/oxc-project/fast-glob/releases) - [Changelog](https://github.com/oxc-project/fast-glob/blob/main/CHANGELOG.md) - [Commits](oxc-project/fast-glob@v1.0.0...v1.0.1) Updates `tokio` from 1.49.0 to 1.50.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.49.0...tokio-1.50.0) Updates `tokio-macros` from 2.6.0 to 2.6.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-macros-2.6.0...tokio-macros-2.6.1) Updates `which` from 8.0.0 to 8.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@8.0.0...8.0.2) 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) --- 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: fast-glob dependency-version: 1.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tokio dependency-version: 1.50.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: tokio-macros dependency-version: 2.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: which dependency-version: 8.0.2 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a7f94cb commit 37171fa

File tree

4 files changed

+35
-49
lines changed

4 files changed

+35
-49
lines changed

Cargo.lock

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

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bench = false
1919
[dependencies]
2020
pyo3 = { version = "0.28.2", features = ["extension-module", "abi3-py39"] }
2121
cpp-linter = { path = "../../cpp-linter" }
22-
tokio = "1.49.0"
22+
tokio = "1.50.0"
2323

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

cpp-linter/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ license.workspace = true
1616
[dependencies]
1717
anyhow = "1.0.102"
1818
chrono = "0.4.44"
19-
clap = { version = "4.5.60", features = ["derive"] }
19+
clap = { version = "4.6.0", features = ["derive"] }
2020
colored = "3.1.1"
21-
fast-glob = "1.0.0"
21+
fast-glob = "1.0.1"
2222
futures = "0.3.32"
2323
git2 = "0.20.4"
2424
log = { version = "0.4.29", features = ["std"] }
@@ -28,14 +28,14 @@ reqwest = { version = "0.13.2", default-features = false, features = ["native-tl
2828
semver = "1.0.27"
2929
serde = { version = "1.0.228", features = ["derive"] }
3030
serde_json = "1.0.148"
31-
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
32-
tokio-macros = "2.5.0"
31+
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread"] }
32+
tokio-macros = "2.6.1"
3333
tokio-stream = "0.1.18"
34-
which = "8.0.0"
34+
which = "8.0.2"
3535

3636
[dev-dependencies]
3737
mockito = "1.7.2"
38-
tempfile = "3.26.0"
38+
tempfile = "3.27.0"
3939
git2 = { version = "0.20.4", features = ["https"]}
4040

4141
[features]

docs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license.workspace = true
1111
[dependencies]
1212
cpp-linter = { path = "../cpp-linter" }
1313
pyo3 = {version = "0.28.2", features = ["extension-module"] }
14-
clap = { version = "4.5.60", features = ["derive"] }
14+
clap = { version = "4.6.0", features = ["derive"] }
1515

1616
[lib]
1717
name = "cli_gen"

0 commit comments

Comments
 (0)