Skip to content

Commit 473fe52

Browse files
Merge pull request #2090 from GitoxideLabs/dependabot/cargo/cargo-f147714000
2 parents 8892cb1 + 428412c commit 473fe52

File tree

20 files changed

+242
-158
lines changed

20 files changed

+242
-158
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ gitoxide-core = { version = "^0.48.0", path = "gitoxide-core" }
155155
gix-features = { version = "^0.43.0", path = "gix-features" }
156156
gix = { version = "^0.73.0", path = "gix", default-features = false }
157157

158-
clap = { version = "4.5.40", features = ["derive", "cargo"] }
159-
clap_complete = "4.5.54"
158+
clap = { version = "4.5.42", features = ["derive", "cargo"] }
159+
clap_complete = "4.5.55"
160160
prodash = { version = "30.0.1", optional = true }
161161
is-terminal = { version = "0.4.0", optional = true }
162162
env_logger = { version = "0.11.8", default-features = false }

gitoxide-core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ tempfile = "3.20.0"
6565
async-trait = { version = "0.1.51", optional = true }
6666
async-net = { version = "2.0", optional = true }
6767
futures-lite = { version = "2.1.0", optional = true }
68-
async-io = { version = "2.4", optional = true }
68+
async-io = { version = "2.5", optional = true }
6969
futures-io = { version = "0.3.16", optional = true }
70-
blocking = { version = "1.0.2", optional = true }
70+
blocking = { version = "1.6.2", optional = true }
7171

7272
# for 'organize' functionality
7373
gix-url = { version = "^0.32.0", path = "../gix-url", optional = true }
@@ -79,12 +79,12 @@ crossbeam-channel = { version = "0.5.15", optional = true }
7979
smallvec = { version = "1.15.1", optional = true }
8080

8181
# for 'query' and 'corpus'
82-
rusqlite = { version = "0.36.0", optional = true, features = ["bundled"] }
82+
rusqlite = { version = "0.37.0", optional = true, features = ["bundled"] }
8383

8484
# for 'corpus'
8585
parking_lot = { version = "0.12.4", optional = true }
86-
sysinfo = { version = "0.35.2", optional = true, default-features = false, features = ["system"] }
87-
serde_json = { version = "1.0.65", optional = true }
86+
sysinfo = { version = "0.36.1", optional = true, default-features = false, features = ["system"] }
87+
serde_json = { version = "1.0.142", optional = true }
8888
tracing-forest = { version = "0.1.5", features = ["serde"], optional = true }
8989
tracing-subscriber = { version = "0.3.17", optional = true }
9090
tracing = { version = "0.1.37", optional = true }

gix-actor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
2727
"std",
2828
"unicode",
2929
] }
30-
winnow = { version = "0.7.10", features = ["simd"] }
30+
winnow = { version = "0.7.12", features = ["simd"] }
3131
itoa = "1.0.1"
3232
serde = { version = "1.0.114", optional = true, default-features = false, features = [
3333
"derive",

gix-archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ gix-path = { version = "^0.10.19", path = "../gix-path", optional = true }
3333
gix-date = { version = "^0.10.3", path = "../gix-date" }
3434

3535
flate2 = { version = "1.1.1", optional = true, default-features = false, features = ["zlib-rs"] }
36-
zip = { version = "4.2.0", optional = true, default-features = false, features = ["deflate-flate2"] }
36+
zip = { version = "4.3.0", optional = true, default-features = false, features = ["deflate-flate2"] }
3737
jiff = { version = "0.2.15", default-features = false, features = ["std"] }
3838

3939
thiserror = "2.0.0"

gix-commitgraph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gix-hash = { version = "^0.19.0", path = "../gix-hash" }
2424
gix-chunk = { version = "^0.4.11", path = "../gix-chunk" }
2525

2626
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
27-
memmap2 = "0.9.0"
27+
memmap2 = "0.9.7"
2828
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
2929
thiserror = "2.0.0"
3030

gix-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ gix-sec = { version = "^0.12.0", path = "../gix-sec" }
2626
gix-ref = { version = "^0.53.0", path = "../gix-ref" }
2727
gix-glob = { version = "^0.21.0", path = "../gix-glob" }
2828

29-
winnow = { version = "0.7.10", features = ["simd"] }
29+
winnow = { version = "0.7.12", features = ["simd"] }
3030
memchr = "2"
3131
thiserror = "2.0.0"
3232
unicode-bom = { version = "2.0.3" }
@@ -38,7 +38,7 @@ once_cell = "1.21.3"
3838
document-features = { version = "0.2.0", optional = true }
3939

4040
[dev-dependencies]
41-
criterion = "0.6.0"
41+
criterion = "0.7.0"
4242

4343
[[bench]]
4444
name = "large_config_file"

gix-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ parking_lot = { version = "0.12.4", default-features = false, optional = true }
111111
walkdir = { version = "2.3.2", optional = true } # used when parallel is off
112112

113113
# hashing
114-
crc32fast = { version = "1.2.1", optional = true }
114+
crc32fast = { version = "1.5.0", optional = true }
115115

116116
# progress
117117
prodash = { version = "30.0.1", optional = true }

gix-index/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ gix-utils = { version = "^0.3.0", path = "../gix-utils" }
3737
hashbrown = "0.15.4"
3838
fnv = "1.0.7"
3939
thiserror = "2.0.0"
40-
memmap2 = "0.9.0"
40+
memmap2 = "0.9.7"
4141
filetime = "0.2.15"
4242
bstr = { version = "1.12.0", default-features = false }
4343

@@ -51,7 +51,7 @@ bitflags = "2"
5151
document-features = { version = "0.2.0", optional = true }
5252

5353
[target.'cfg(not(windows))'.dependencies]
54-
rustix = { version = "1.0.7", default-features = false, features = [
54+
rustix = { version = "1.0.8", default-features = false, features = [
5555
"std",
5656
"fs",
5757
] }

gix-object/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ bstr = { version = "1.12.0", default-features = false, features = [
5858
"std",
5959
"unicode",
6060
] }
61-
winnow = { version = "0.7.10", features = ["simd"] }
61+
winnow = { version = "0.7.12", features = ["simd"] }
6262
smallvec = { version = "1.15.1", features = ["write"] }
6363
serde = { version = "1.0.114", optional = true, default-features = false, features = [
6464
"derive",
@@ -67,7 +67,7 @@ serde = { version = "1.0.114", optional = true, default-features = false, featur
6767
document-features = { version = "0.2.0", optional = true }
6868

6969
[dev-dependencies]
70-
criterion = "0.6.0"
70+
criterion = "0.7.0"
7171
pretty_assertions = "1.0.0"
7272
gix-testtools = { path = "../tests/tools" }
7373
gix-odb = { path = "../gix-odb" }

0 commit comments

Comments
 (0)