Skip to content

Commit 8901271

Browse files
authored
Merge pull request #5879 from gitbutlerapp/dependabot/cargo/rust-updates-3e91fb2386
Bump the rust-updates group with 25 updates
2 parents d6c81c7 + 1ccb360 commit 8901271

File tree

26 files changed

+208
-236
lines changed

26 files changed

+208
-236
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ members = [
4141
resolver = "2"
4242

4343
[workspace.dependencies]
44-
bstr = "1.11.0"
44+
bstr = "1.11.1"
4545
# Add the `tracing` or `tracing-detail` features to see more of gitoxide in the logs. Useful to see which programs it invokes.
4646
gix = { git = "https://github.com/GitoxideLabs/gitoxide", rev = "520c832cfcfb34eb7617be55ebe2719ab35595fd", default-features = false, features = [] }
4747
git2 = { version = "0.19.0", features = [
@@ -50,10 +50,10 @@ git2 = { version = "0.19.0", features = [
5050
] }
5151
uuid = { version = "1.11.0", features = ["v4", "serde"] }
5252
serde = { version = "1.0", features = ["derive"] }
53-
thiserror = "2.0.3"
54-
tokio = { version = "1.41.1", default-features = false }
53+
thiserror = "2.0.9"
54+
tokio = { version = "1.42.0", default-features = false }
5555
keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "linux-native", "crypto-rust"] }
56-
anyhow = "1.0.93"
56+
anyhow = "1.0.95"
5757
parking_lot = "0.12.3"
5858
futures = "0.3.31"
5959
toml = "0.8.13"

crates/gitbutler-branch-actions/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77

88
[dependencies]
99
tracing.workspace = true
10-
anyhow = "1.0.93"
10+
anyhow = "1.0.95"
1111
git2.workspace = true
1212
gix = { workspace = true, features = ["blob-diff", "revision", "merge"] }
1313
tokio.workspace = true
@@ -40,7 +40,7 @@ regex = "1.11"
4040
git2-hooks = "0.4"
4141
url = { version = "2.5.4", features = ["serde"] }
4242
md5 = "0.7.0"
43-
itertools = "0.13"
43+
itertools = "0.14"
4444
gitbutler-command-context.workspace = true
4545
gitbutler-project.workspace = true
4646
urlencoding = "2.1.3"
@@ -54,7 +54,7 @@ gitbutler-testsupport.workspace = true
5454
gitbutler-workspace.workspace = true
5555
gix = { workspace = true, features = ["max-performance"] }
5656
gitbutler-git = { workspace = true, features = ["test-askpass-path"] }
57-
glob = "0.3.1"
57+
glob = "0.3.2"
5858
serial_test = "3.2.0"
5959
tempfile = "3.14"
6060
criterion = "0.5.1"

crates/gitbutler-branch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ publish = false
77
autotests = false
88

99
[dependencies]
10-
anyhow = "1.0.93"
10+
anyhow = "1.0.95"
1111
git2.workspace = true
1212
gix = { workspace = true, features = [] }
1313
gitbutler-reference.workspace = true
1414
gitbutler-diff.workspace = true
1515
gitbutler-stack.workspace = true
16-
itertools = "0.13"
16+
itertools = "0.14"
1717
serde = { workspace = true, features = ["std"] }
1818
bstr.workspace = true
1919
lazy_static = "1.4.0"

crates/gitbutler-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ gitbutler-diff.workspace = true
2121
gitbutler-stack.workspace = true
2222
gix = { workspace = true, features = ["max-performance", "tracing"] }
2323
dirs-next = "2.0.0"
24-
clap = { version = "4.5.21", features = ["derive", "env"] }
25-
anyhow = "1.0.93"
26-
chrono = "0.4.10"
24+
clap = { version = "4.5.23", features = ["derive", "env"] }
25+
anyhow = "1.0.95"
26+
chrono = "0.4.39"
2727
tracing-forest = { version = "0.1.6" }
2828
tracing-subscriber.workspace = true
2929
tracing.workspace = true

crates/gitbutler-command-context/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ authors = ["GitButler <[email protected]>"]
66
publish = false
77

88
[dependencies]
9-
anyhow = "1.0.93"
9+
anyhow = "1.0.95"
1010
git2.workspace = true
1111
gix.workspace = true
1212
tracing.workspace = true
1313
gitbutler-project.workspace = true
14-
itertools = "0.13"
15-
bstr = "1.11.0"
14+
itertools = "0.14"
15+
bstr = "1.11.1"

crates/gitbutler-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ publish = false
77

88
[dependencies]
99
git2.workspace = true
10-
anyhow = "1.0.93"
10+
anyhow = "1.0.95"
1111
serde = { workspace = true, features = ["std"]}
1212
gitbutler-project.workspace = true

crates/gitbutler-diff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ autotests = false
1010
git2.workspace = true
1111
bstr.workspace = true
1212
md5 = "0.7.0"
13-
anyhow = "1.0.93"
13+
anyhow = "1.0.95"
1414
hex = "0.4.3"
1515
tracing.workspace = true
1616
gitbutler-serde.workspace = true

crates/gitbutler-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ authors = ["GitButler <[email protected]>"]
66
publish = false
77

88
[dependencies]
9-
anyhow = "1.0.93"
9+
anyhow = "1.0.95"

crates/gitbutler-feedback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["GitButler <[email protected]>"]
66
publish = false
77

88
[dependencies]
9-
anyhow = "1.0.93"
9+
anyhow = "1.0.95"
1010
zip = "0.6.5"
1111
walkdir = "2.5.0"
1212
sha2 = "0.10.8"

0 commit comments

Comments
 (0)