Skip to content

Commit 697199a

Browse files
Bump the cargo group across 1 directory with 13 updates (#73)
BREAKING: Dropped support for end-of-life python versions v3.7 and v3.8 Bumps the cargo group with 13 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.93` | | [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.66` | `0.10.68` | | [regex](https://github.com/rust-lang/regex) | `1.11.0` | `1.11.1` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.8` | `0.12.9` | | [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.215` | | [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.133` | | [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.1` | | [which](https://github.com/harryfei/which-rs) | `6.0.3` | `7.0.0` | | [mockito](https://github.com/lipanski/mockito) | `1.5.0` | `1.6.1` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.13.0` | `3.14.0` | | [pyo3](https://github.com/pyo3/pyo3) | `0.22.4` | `0.23.1` | | [napi](https://github.com/napi-rs/napi-rs) | `2.16.12` | `2.16.13` | --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brendan <[email protected]>
1 parent e93edda commit 697199a

File tree

6 files changed

+62
-62
lines changed

6 files changed

+62
-62
lines changed

Cargo.lock

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

cpp-linter/Cargo.toml

+10-10
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.89"
17+
anyhow = "1.0.93"
1818
chrono = "0.4.38"
19-
clap = "4.5.20"
19+
clap = "4.5.21"
2020
colored = "2.1.0"
2121
fast-glob = "0.4.0"
2222
futures = "0.3.31"
@@ -25,20 +25,20 @@ lenient_semver = "0.4.2"
2525
log = { version = "0.4.22", features = ["std"] }
2626
openssl = { version = "0.10", features = ["vendored"], optional = true }
2727
openssl-probe = { version = "0.1", optional = true }
28-
regex = "1.10.6"
29-
reqwest = "0.12.8"
28+
regex = "1.11.1"
29+
reqwest = "0.12.9"
3030
semver = "1.0.23"
31-
serde = { version = "1.0.210", features = ["derive"] }
31+
serde = { version = "1.0.215", features = ["derive"] }
3232
serde-xml-rs = "0.6.0"
33-
serde_json = "1.0.128"
34-
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"]}
33+
serde_json = "1.0.133"
34+
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"]}
3535
tokio-macros = "2.4.0"
3636
tokio-stream = "0.1.16"
37-
which = "6.0.3"
37+
which = "7.0.0"
3838

3939
[dev-dependencies]
40-
mockito = "1.5.0"
41-
tempfile = "3.12.0"
40+
mockito = "1.6.1"
41+
tempfile = "3.14.0"
4242

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

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.22.4"
14+
pyo3 = "0.23.1"
1515

1616
[lib]
1717
name = "cli_gen"

node-binding/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ crate-type = ["cdylib"]
1616

1717
[dependencies]
1818
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
19-
napi = { version = "2.16.12", default-features = false, features = ["napi4", "async"] }
19+
napi = { version = "2.16.13", default-features = false, features = ["napi4", "async"] }
2020
napi-derive = "2.12.2"
2121
cpp-linter = { path = "../cpp-linter" }
22-
anyhow = "1.0.89"
22+
anyhow = "1.0.93"
2323

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

py-binding/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ name = "cpp_linter"
1616
crate-type = ["cdylib"]
1717

1818
[dependencies]
19-
pyo3 = { version = "0.22.4", features = ["extension-module"] }
19+
pyo3 = { version = "0.23.1", features = ["extension-module"] }
2020
cpp-linter = { path = "../cpp-linter" }
21-
tokio = "1.40.0"
21+
tokio = "1.41.1"
2222

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

py-binding/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Run clang-format and clang-tidy on a batch of files."
88
readme = "README.md"
99
keywords = ["clang", "clang-tools", "linter", "clang-tidy", "clang-format"]
1010
license = {text = "MIT License"}
11-
requires-python = ">=3.7"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{ name = "Brendan Doherty", email = "[email protected]" },
1414
{ name = "Peter Shen", email = "[email protected]" },

0 commit comments

Comments
 (0)