Skip to content

Commit e860977

Browse files
Bump the cargo group across 1 directory with 6 updates
Bumps the cargo group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.98` | | [chrono](https://github.com/chronotope/chrono) | `0.4.40` | `0.4.41` | | [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.37` | | [git2](https://github.com/rust-lang/git2-rs) | `0.20.1` | `0.20.2` | | [quick-xml](https://github.com/tafia/quick-xml) | `0.37.4` | `0.37.5` | | [pyo3](https://github.com/pyo3/pyo3) | `0.24.1` | `0.24.2` | Updates `anyhow` from 1.0.97 to 1.0.98 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.97...1.0.98) Updates `chrono` from 0.4.40 to 0.4.41 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](chronotope/chrono@v0.4.40...v0.4.41) Updates `clap` from 4.5.35 to 4.5.37 - [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.35...clap_complete-v4.5.37) Updates `git2` from 0.20.1 to 0.20.2 - [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md) - [Commits](rust-lang/git2-rs@git2-0.20.1...git2-0.20.2) Updates `quick-xml` from 0.37.4 to 0.37.5 - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](tafia/quick-xml@v0.37.4...v0.37.5) Updates `pyo3` from 0.24.1 to 0.24.2 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.24.1...v0.24.2) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.98 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: chrono dependency-version: 0.4.41 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap dependency-version: 4.5.37 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: git2 dependency-version: 0.20.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: quick-xml dependency-version: 0.37.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: pyo3 dependency-version: 0.24.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent dfa4767 commit e860977

File tree

5 files changed

+30
-30
lines changed

5 files changed

+30
-30
lines changed

Cargo.lock

+22-22
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
@@ -20,7 +20,7 @@ bench = false
2020
napi = { version = "2.16.17", default-features = false, features = ["napi4", "async"] }
2121
napi-derive = "2.16.13"
2222
cpp-linter = { path = "../../cpp-linter" }
23-
anyhow = "1.0.97"
23+
anyhow = "1.0.98"
2424

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

bindings/python/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ crate-type = ["cdylib"]
1717
bench = false
1818

1919
[dependencies]
20-
pyo3 = { version = "0.24.1", features = ["extension-module"] }
20+
pyo3 = { version = "0.24.2", features = ["extension-module"] }
2121
cpp-linter = { path = "../../cpp-linter" }
2222
tokio = "1.44.2"
2323

cpp-linter/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ 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.97"
18-
chrono = "0.4.40"
19-
clap = "4.5.35"
17+
anyhow = "1.0.98"
18+
chrono = "0.4.41"
19+
clap = "4.5.37"
2020
colored = "3.0.0"
2121
fast-glob = "0.4.5"
2222
futures = "0.3.31"
23-
git2 = "0.20.1"
23+
git2 = "0.20.2"
2424
lenient_semver = "0.4.2"
2525
log = { version = "0.4.27", features = ["std"] }
2626
openssl = { version = "0.10", features = ["vendored"], optional = true }
2727
openssl-probe = { version = "0.1", optional = true }
28-
quick-xml = {version = "0.37.4", features = ["serialize"]}
28+
quick-xml = {version = "0.37.5", features = ["serialize"]}
2929
regex = "1.11.1"
3030
reqwest = "0.12.15"
3131
semver = "1.0.26"

docs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license.workspace = true
1111

1212
[dependencies]
1313
cpp-linter = { path = "../cpp-linter" }
14-
pyo3 = "0.24.1"
14+
pyo3 = "0.24.2"
1515

1616
[lib]
1717
name = "cli_gen"

0 commit comments

Comments
 (0)