Skip to content

Commit 9972b13

Browse files
chore(deps): Bump the version-updates group with 8 updates
Bumps the version-updates group with 8 updates: | Package | From | To | | --- | --- | --- | | [color-eyre](https://github.com/eyre-rs/eyre) | `0.6.3` | `0.6.4` | | [serde-xml-rs](https://github.com/RReverser/serde-xml-rs) | `0.6.0` | `0.8.0` | | [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.38` | | [chrono](https://github.com/chronotope/chrono) | `0.4.40` | `0.4.41` | | [which](https://github.com/harryfei/which-rs) | `7.0.2` | `7.0.3` | | [ureq](https://github.com/algesten/ureq) | `3.0.10` | `3.0.11` | | [syn](https://github.com/dtolnay/syn) | `2.0.100` | `2.0.101` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` | Updates `color-eyre` from 0.6.3 to 0.6.4 - [Commits](https://github.com/eyre-rs/eyre/compare/[email protected]) Updates `serde-xml-rs` from 0.6.0 to 0.8.0 - [Release notes](https://github.com/RReverser/serde-xml-rs/releases) - [Commits](RReverser/serde-xml-rs@0.6.0...0.8.0) Updates `clap` from 4.5.35 to 4.5.38 - [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.38) 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 `which` from 7.0.2 to 7.0.3 - [Release notes](https://github.com/harryfei/which-rs/releases) - [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md) - [Commits](harryfei/which-rs@7.0.2...7.0.3) Updates `ureq` from 3.0.10 to 3.0.11 - [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md) - [Commits](algesten/ureq@3.0.10...3.0.11) Updates `syn` from 2.0.100 to 2.0.101 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](dtolnay/syn@2.0.100...2.0.101) Updates `proc-macro2` from 1.0.94 to 1.0.95 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](dtolnay/proc-macro2@1.0.94...1.0.95) --- updated-dependencies: - dependency-name: color-eyre dependency-version: 0.6.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates - dependency-name: serde-xml-rs dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: version-updates - dependency-name: clap dependency-version: 4.5.38 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates - dependency-name: chrono dependency-version: 0.4.41 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates - dependency-name: which dependency-version: 7.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates - dependency-name: ureq dependency-version: 3.0.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates - dependency-name: syn dependency-version: 2.0.101 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates - dependency-name: proc-macro2 dependency-version: 1.0.95 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: version-updates ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d07fae7 commit 9972b13

File tree

3 files changed

+58
-33
lines changed

3 files changed

+58
-33
lines changed

Cargo.lock

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

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ repository = "https://github.com/kworkflow/patch-hub"
66
description = "patch-hub is a TUI that streamlines the interaction of Linux developers with patches archived on lore.kernel.org"
77

88
[dependencies]
9-
color-eyre = "0.6.3"
9+
color-eyre = "0.6.4"
1010
mockall = "0.13.1"
1111
derive-getters = { version = "0.5.0", features = ["auto_copy_getters"] }
1212
lazy_static = "1.5.0"
1313
proc_macros = { path = "./proc_macros" }
1414
ratatui = "0.29.0"
1515
regex = "1.11.1"
1616
serde = { version = "1.0.219", features = ["derive"] }
17-
serde-xml-rs = "0.6.0"
17+
serde-xml-rs = "0.8.0"
1818
serde_json = "1.0.140"
1919
thiserror = "2.0.12"
20-
clap = { version = "4.5.35", features = ["derive"] }
21-
chrono = "0.4.40"
20+
clap = { version = "4.5.38", features = ["derive"] }
21+
chrono = "0.4.41"
2222
ansi-to-tui = "7.0.0"
23-
which = "7.0.2"
24-
ureq = { version = "3.0.10", features = ["rustls"] }
23+
which = "7.0.3"
24+
ureq = { version = "3.0.11", features = ["rustls"] }
2525

2626
# The profile that 'cargo dist' will build with
2727
[profile.dist]

proc_macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ derive-getters = { version = "0.5.0", features = ["auto_copy_getters"] }
88
lazy_static = "1.5.0"
99
serde = { version = "1.0.203", features = ["derive"] }
1010
serde_json = "1.0.120"
11-
syn = { version = "2.0.100", features = ["full"] }
11+
syn = { version = "2.0.101", features = ["full"] }
1212
quote = "1.0.4"
13-
proc-macro2 = "1.0.94"
13+
proc-macro2 = "1.0.95"
1414

1515
[lib]
1616
proc-macro = true

0 commit comments

Comments
 (0)