Skip to content

Commit 6315536

Browse files
committed
Adapt Cargo.toml files in workspace to gix-features bump
This does not increment their package versions, which can be done when they are actually being released. It only bumps the versions of `gix-features` they specify as dependencies, to allow them to build again after the "out of band" version bump done in the preceding commit. For context, see the preceding commit as well as: #1952
1 parent 7882907 commit 6315536

File tree

19 files changed

+45
-45
lines changed

19 files changed

+45
-45
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
168168
anyhow = "1.0.42"
169169

170170
gitoxide-core = { version = "^0.46.0", path = "gitoxide-core" }
171-
gix-features = { version = "^0.41.1", path = "gix-features" }
171+
gix-features = { version = "^0.42.0", path = "gix-features" }
172172
gix = { version = "^0.71.0", path = "gix", default-features = false }
173173

174174
clap = { version = "4.5.36", features = ["derive", "cargo"] }

gix-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ autotests = false
1919
serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/serde", "gix-config-value/serde"]
2020

2121
[dependencies]
22-
gix-features = { version = "^0.41.1", path = "../gix-features" }
22+
gix-features = { version = "^0.42.0", path = "../gix-features" }
2323
gix-config-value = { version = "^0.14.12", path = "../gix-config-value" }
2424
gix-path = { version = "^0.10.15", path = "../gix-path" }
2525
gix-sec = { version = "^0.10.12", path = "../gix-sec" }

gix-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = ["dep:serde"]
2121
[dependencies]
2222
bstr = "1.12.0"
2323
gix-path = { version = "^0.10.15", path = "../gix-path" }
24-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["fs-read-dir"] }
24+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["fs-read-dir"] }
2525
gix-utils = { version = "^0.2.0", path = "../gix-utils" }
2626
thiserror = "2.0.0"
2727
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }

gix-glob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "bstr/serde", "bitflags/serde"]
2020

2121
[dependencies]
2222
gix-path = { version = "^0.10.15", path = "../gix-path" }
23-
gix-features = { version = "^0.41.1", path = "../gix-features" }
23+
gix-features = { version = "^0.42.0", path = "../gix-features" }
2424
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
2525
bitflags = "2"
2626
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

gix-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test = false
2020
serde = ["dep:serde"]
2121

2222
[dependencies]
23-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["progress"] }
23+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["progress"] }
2424

2525
thiserror = "2.0.0"
2626
faster-hex = { version = "0.10.0" }

gix-index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test = true
2222
serde = ["dep:serde", "smallvec/serde", "gix-hash/serde"]
2323

2424
[dependencies]
25-
gix-features = { version = "^0.41.1", path = "../gix-features", features = [
25+
gix-features = { version = "^0.42.0", path = "../gix-features", features = [
2626
"progress",
2727
] }
2828
gix-hash = { version = "^0.17.0", path = "../gix-hash" }

gix-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ serde = [
4141
verbose-object-parsing-errors = ["winnow/std"]
4242

4343
[dependencies]
44-
gix-features = { version = "^0.41.1", path = "../gix-features", features = [
44+
gix-features = { version = "^0.42.0", path = "../gix-features", features = [
4545
"progress",
4646
] }
4747
gix-hash = { version = "^0.17.0", path = "../gix-hash" }

gix-odb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ doctest = false
2020
serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]
2121

2222
[dependencies]
23-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["walkdir", "zlib", "crc32"] }
23+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["walkdir", "zlib", "crc32"] }
2424
gix-hashtable = { version = "^0.8.0", path = "../gix-hashtable" }
2525
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
2626
gix-date = { version = "^0.9.4", path = "../gix-date" }

gix-pack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ serde = ["dep:serde", "gix-object/serde"]
3434
wasm = ["gix-diff?/wasm"]
3535

3636
[dependencies]
37-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["crc32", "progress", "zlib"] }
37+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["crc32", "progress", "zlib"] }
3838
gix-path = { version = "^0.10.15", path = "../gix-path" }
3939
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
4040
gix-chunk = { version = "^0.4.11", path = "../gix-chunk" }

0 commit comments

Comments
 (0)