Skip to content

Commit e6f8f24

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.51` | `4.5.53` | | [git2](https://github.com/rust-lang/git2-rs) | `0.20.2` | `0.20.3` | | [log](https://github.com/rust-lang/log) | `0.4.28` | `0.4.29` | | [quick-xml](https://github.com/tafia/quick-xml) | `0.38.3` | `0.38.4` | | [mockito](https://github.com/lipanski/mockito) | `1.7.0` | `1.7.1` | | [pyo3](https://github.com/pyo3/pyo3) | `0.27.1` | `0.27.2` | | [napi](https://github.com/napi-rs/napi-rs) | `3.5.2` | `3.6.1` | | [napi-derive](https://github.com/napi-rs/napi-rs) | `3.3.3` | `3.4.0` | Updates `clap` from 4.5.51 to 4.5.53 - [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.51...clap_complete-v4.5.53) Updates `git2` from 0.20.2 to 0.20.3 - [Changelog](https://github.com/rust-lang/git2-rs/blob/git2-0.20.3/CHANGELOG.md) - [Commits](rust-lang/git2-rs@git2-0.20.2...git2-0.20.3) Updates `log` from 0.4.28 to 0.4.29 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](rust-lang/log@0.4.28...0.4.29) Updates `quick-xml` from 0.38.3 to 0.38.4 - [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.38.3...v0.38.4) Updates `mockito` from 1.7.0 to 1.7.1 - [Release notes](https://github.com/lipanski/mockito/releases) - [Commits](lipanski/mockito@1.7.0...1.7.1) Updates `pyo3` from 0.27.1 to 0.27.2 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/v0.27.2/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.27.1...v0.27.2) Updates `napi` from 3.5.2 to 3.6.1 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](napi-rs/napi-rs@napi-v3.5.2...napi-v3.6.1) Updates `napi-derive` from 3.3.3 to 3.4.0 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](napi-rs/napi-rs@napi-derive-v3.3.3...napi-derive-v3.4.0) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.53 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: git2 dependency-version: 0.20.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: log dependency-version: 0.4.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: quick-xml dependency-version: 0.38.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: mockito dependency-version: 1.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: pyo3 dependency-version: 0.27.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: napi dependency-version: 3.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: napi-derive dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f621fce commit e6f8f24

File tree

5 files changed

+47
-46
lines changed

5 files changed

+47
-46
lines changed

Cargo.lock

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

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.5.2", default-features = false, features = ["napi4", "async"] }
21-
napi-derive = "3.3.3"
20+
napi = { version = "3.6.1", default-features = false, features = ["napi4", "async"] }
21+
napi-derive = "3.4.0"
2222
cpp-linter = { path = "../../cpp-linter" }
2323
anyhow = "1.0.100"
2424

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.27.1", features = ["extension-module", "abi3-py39"] }
20+
pyo3 = { version = "0.27.2", features = ["extension-module", "abi3-py39"] }
2121
cpp-linter = { path = "../../cpp-linter" }
2222
tokio = "1.48.0"
2323

cpp-linter/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ license.workspace = true
1616
[dependencies]
1717
anyhow = "1.0.100"
1818
chrono = "0.4.42"
19-
clap = { version = "4.5.51", features = ["derive"] }
19+
clap = { version = "4.5.53", features = ["derive"] }
2020
colored = "3.0.0"
2121
fast-glob = "1.0.0"
2222
futures = "0.3.31"
23-
git2 = "0.20.2"
24-
log = { version = "0.4.28", features = ["std"] }
25-
quick-xml = { version = "0.38.3", features = ["serialize"] }
23+
git2 = "0.20.3"
24+
log = { version = "0.4.29", features = ["std"] }
25+
quick-xml = { version = "0.38.4", features = ["serialize"] }
2626
regex = "1.12.2"
2727
reqwest = "0.12.24"
2828
semver = "1.0.27"
@@ -34,9 +34,9 @@ tokio-stream = "0.1.17"
3434
which = "8.0.0"
3535

3636
[dev-dependencies]
37-
mockito = "1.7.0"
37+
mockito = "1.7.1"
3838
tempfile = "3.23.0"
39-
git2 = { version = "0.20.2", features = ["https"]}
39+
git2 = { version = "0.20.3", features = ["https"]}
4040

4141
[features]
4242
openssl-vendored = ["git2/vendored-openssl"]

docs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ license.workspace = true
1010

1111
[dependencies]
1212
cpp-linter = { path = "../cpp-linter" }
13-
pyo3 = {version = "0.27.1", features = ["extension-module"] }
14-
clap = { version = "4.5.51", features = ["derive"] }
13+
pyo3 = {version = "0.27.2", features = ["extension-module"] }
14+
clap = { version = "4.5.53", features = ["derive"] }
1515

1616
[lib]
1717
name = "cli_gen"

0 commit comments

Comments
 (0)