Skip to content

Commit 7406c97

Browse files
build(deps): bump the cargo group across 1 directory with 9 updates
Bumps the cargo group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.99` | `1.0.100` | | [clap](https://github.com/clap-rs/clap) | `4.5.47` | `4.5.50` | | [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.73` | `0.10.74` | | [regex](https://github.com/rust-lang/regex) | `1.11.2` | `1.12.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.23` | `0.12.24` | | [serde](https://github.com/serde-rs/serde) | `1.0.224` | `1.0.228` | | [tokio](https://github.com/tokio-rs/tokio) | `1.47.1` | `1.47.2` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.22.0` | `3.23.0` | | [pyo3](https://github.com/pyo3/pyo3) | `0.26.0` | `0.27.0` | Updates `anyhow` from 1.0.99 to 1.0.100 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.99...1.0.100) Updates `clap` from 4.5.47 to 4.5.50 - [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.47...clap_complete-v4.5.50) Updates `openssl` from 0.10.73 to 0.10.74 - [Release notes](https://github.com/rust-openssl/rust-openssl/releases) - [Commits](rust-openssl/rust-openssl@openssl-v0.10.73...openssl-v0.10.74) Updates `regex` from 1.11.2 to 1.12.2 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](rust-lang/regex@1.11.2...1.12.2) Updates `reqwest` from 0.12.23 to 0.12.24 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](seanmonstar/reqwest@v0.12.23...v0.12.24) Updates `serde` from 1.0.224 to 1.0.228 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.224...v1.0.228) Updates `tokio` from 1.47.1 to 1.47.2 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.47.1...tokio-1.47.2) Updates `tempfile` from 3.22.0 to 3.23.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.22.0...v3.23.0) Updates `pyo3` from 0.26.0 to 0.27.0 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.26.0...v0.27.0) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.100 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap dependency-version: 4.5.50 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: openssl dependency-version: 0.10.74 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: regex dependency-version: 1.12.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: reqwest dependency-version: 0.12.24 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde dependency-version: 1.0.228 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tokio dependency-version: 1.47.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tempfile dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: pyo3 dependency-version: 0.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f2f694f commit 7406c97

File tree

5 files changed

+47
-47
lines changed

5 files changed

+47
-47
lines changed

Cargo.lock

Lines changed: 36 additions & 36 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bench = false
2020
napi = { version = "3.3.0", default-features = false, features = ["napi4", "async"] }
2121
napi-derive = "3.2.5"
2222
cpp-linter = { path = "../../cpp-linter" }
23-
anyhow = "1.0.99"
23+
anyhow = "1.0.100"
2424

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

bindings/python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ crate-type = ["cdylib"]
1717
bench = false
1818

1919
[dependencies]
20-
pyo3 = { version = "0.26.0", features = ["extension-module", "abi3-py39"] }
20+
pyo3 = { version = "0.27.0", features = ["extension-module", "abi3-py39"] }
2121
cpp-linter = { path = "../../cpp-linter" }
22-
tokio = "1.47.1"
22+
tokio = "1.47.2"
2323

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

cpp-linter/Cargo.toml

Lines changed: 7 additions & 7 deletions
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.99"
17+
anyhow = "1.0.100"
1818
chrono = "0.4.42"
19-
clap = "4.5.47"
19+
clap = "4.5.50"
2020
colored = "3.0.0"
2121
fast-glob = "1.0.0"
2222
futures = "0.3.31"
@@ -26,19 +26,19 @@ log = { version = "0.4.28", features = ["std"] }
2626
openssl = { version = "0.10", features = ["vendored"], optional = true }
2727
openssl-probe = { version = "0.1", optional = true }
2828
quick-xml = { version = "0.38.3", features = ["serialize"] }
29-
regex = "1.11.2"
30-
reqwest = "0.12.23"
29+
regex = "1.12.2"
30+
reqwest = "0.12.24"
3131
semver = "1.0.27"
32-
serde = { version = "1.0.224", features = ["derive"] }
32+
serde = { version = "1.0.228", features = ["derive"] }
3333
serde_json = "1.0.145"
34-
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
34+
tokio = { version = "1.47.2", features = ["macros", "rt-multi-thread"] }
3535
tokio-macros = "2.5.0"
3636
tokio-stream = "0.1.17"
3737
which = "8.0.0"
3838

3939
[dev-dependencies]
4040
mockito = "1.7.0"
41-
tempfile = "3.22.0"
41+
tempfile = "3.23.0"
4242

4343
[features]
4444
openssl-vendored = ["dep:openssl", "dep:openssl-probe"]

docs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license.workspace = true
1010

1111
[dependencies]
1212
cpp-linter = { path = "../cpp-linter" }
13-
pyo3 = "0.26.0"
13+
pyo3 = "0.27.0"
1414

1515
[lib]
1616
name = "cli_gen"

0 commit comments

Comments
 (0)