Skip to content

Commit f0a3b60

Browse files
dependabot[bot]2bndy5
authored andcommitted
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.16` | `4.5.17` | | [serde](https://github.com/serde-rs/serde) | `1.0.209` | `1.0.210` | | [serde_json](https://github.com/serde-rs/json) | `1.0.127` | `1.0.128` | | [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` | | [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.15` | `0.1.16` | | [pyo3](https://github.com/pyo3/pyo3) | `0.22.2` | `0.22.3` | Updates `clap` from 4.5.16 to 4.5.17 - [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.16...clap_complete-v4.5.17) Updates `serde` from 1.0.209 to 1.0.210 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.209...v1.0.210) Updates `serde_json` from 1.0.127 to 1.0.128 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@1.0.127...1.0.128) Updates `tokio` from 1.39.3 to 1.40.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.39.3...tokio-1.40.0) Updates `tokio-stream` from 0.1.15 to 0.1.16 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-stream-0.1.15...tokio-stream-0.1.16) Updates `pyo3` from 0.22.2 to 0.22.3 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/v0.22.3/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.22.2...v0.22.3) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde 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: 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: pyo3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent bd049d0 commit f0a3b60

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed

Cargo.lock

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

cpp-linter-lib/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation.workspace = true
99

1010
[dependencies]
1111
chrono = "0.4.38"
12-
clap = "4.5.16"
12+
clap = "4.5.17"
1313
fast-glob = "0.4.0"
1414
futures = "0.3.30"
1515
git2 = "0.19.0"
@@ -20,12 +20,12 @@ openssl-probe = { version = "0.1", optional = true }
2020
regex = "1.10.6"
2121
reqwest = "0.12.7"
2222
semver = "1.0.23"
23-
serde = { version = "1.0.209", features = ["derive"] }
23+
serde = { version = "1.0.210", features = ["derive"] }
2424
serde-xml-rs = "0.6.0"
25-
serde_json = "1.0.127"
26-
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"]}
25+
serde_json = "1.0.128"
26+
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"]}
2727
tokio-macros = "2.4.0"
28-
tokio-stream = "0.1.15"
28+
tokio-stream = "0.1.16"
2929
which = "6.0.3"
3030

3131
[dev-dependencies]

cpp-linter-py/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ name = "cpp_linter"
1212
crate-type = ["cdylib"]
1313

1414
[dependencies]
15-
pyo3 = { version = "0.22.2", features = ["extension-module"] }
15+
pyo3 = { version = "0.22.3", features = ["extension-module"] }
1616
cpp-linter-lib = { path = "../cpp-linter-lib", version = "*" }
17-
tokio = "1.39.3"
17+
tokio = "1.40.0"
1818

1919
[features]
2020
openssl-vendored = ["cpp-linter-lib/openssl-vendored"]

docs/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ documentation.workspace = true
99

1010
[dependencies]
1111
cpp-linter-lib = { path = "../cpp-linter-lib", version = "*" }
12-
clap = "4.5.16"
12+
clap = "4.5.17"
1313
mdbook = "0.4.40"
1414
semver = "1.0.23"
15-
serde_json = "1.0.127"
15+
serde_json = "1.0.128"
1616

1717
[[bin]]
1818
name = "cli-gen"

0 commit comments

Comments
 (0)