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

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

Cargo.toml

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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" }

gix-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ path = "tests/async-protocol.rs"
6868
required-features = ["async-client"]
6969

7070
[dependencies]
71-
gix-features = { version = "^0.41.1", path = "../gix-features", features = [
71+
gix-features = { version = "^0.42.0", path = "../gix-features", features = [
7272
"progress",
7373
] }
7474
gix-transport = { version = "^0.46.0", path = "../gix-transport" }

gix-ref/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test = true
2121
serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]
2222

2323
[dependencies]
24-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["walkdir"] }
24+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["walkdir"] }
2525
gix-fs = { version = "^0.14.0", path = "../gix-fs" }
2626
gix-path = { version = "^0.10.15", path = "../gix-path" }
2727
gix-hash = { version = "^0.17.0", path = "../gix-hash" }

gix-status/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ gix-fs = { version = "^0.14.0", path = "../gix-fs" }
2525
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
2626
gix-object = { version = "^0.48.0", path = "../gix-object" }
2727
gix-path = { version = "^0.10.15", path = "../gix-path" }
28-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["progress"] }
28+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["progress"] }
2929
gix-filter = { version = "^0.18.0", path = "../gix-filter" }
3030
gix-worktree = { version = "^0.40.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
3131
gix-pathspec = { version = "^0.10.0", path = "../gix-pathspec" }

gix-transport/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ required-features = ["async-client"]
8282

8383
[dependencies]
8484
gix-command = { version = "^0.5.0", path = "../gix-command" }
85-
gix-features = { version = "^0.41.1", path = "../gix-features" }
85+
gix-features = { version = "^0.42.0", path = "../gix-features" }
8686
gix-url = { version = "^0.30.0", path = "../gix-url" }
8787
gix-sec = { version = "^0.10.12", path = "../gix-sec" }
8888
gix-packetline = { version = "^0.18.4", path = "../gix-packetline" }

gix-url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = false
1919
serde = ["dep:serde", "bstr/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-path = { version = "^0.10.15", path = "../gix-path" }
2424

2525
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }

gix-worktree-state/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gix-hash = { version = "^0.17.0", path = "../gix-hash" }
2323
gix-object = { version = "^0.48.0", path = "../gix-object" }
2424
gix-glob = { version = "^0.19.0", path = "../gix-glob" }
2525
gix-path = { version = "^0.10.15", path = "../gix-path" }
26-
gix-features = { version = "^0.41.1", path = "../gix-features" }
26+
gix-features = { version = "^0.42.0", path = "../gix-features" }
2727
gix-filter = { version = "^0.18.0", path = "../gix-filter" }
2828

2929
io-close = "0.3.7"

gix-worktree-stream/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include = ["src/**/*", "LICENSE-*"]
1515
doctest = false
1616

1717
[dependencies]
18-
gix-features = { version = "^0.41.1", path = "../gix-features", features = ["progress", "io-pipe"] }
18+
gix-features = { version = "^0.42.0", path = "../gix-features", features = ["progress", "io-pipe"] }
1919
gix-hash = { version = "^0.17.0", path = "../gix-hash" }
2020
gix-object = { version = "^0.48.0", path = "../gix-object" }
2121
gix-attributes = { version = "^0.25.0", path = "../gix-attributes" }

gix-worktree/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gix-path = { version = "^0.10.15", path = "../gix-path" }
3232
gix-attributes = { version = "^0.25.0", path = "../gix-attributes", optional = true }
3333
gix-validate = { version = "^0.9.4", path = "../gix-validate", optional = true }
3434
gix-ignore = { version = "^0.14.0", path = "../gix-ignore" }
35-
gix-features = { version = "^0.41.1", path = "../gix-features" }
35+
gix-features = { version = "^0.42.0", path = "../gix-features" }
3636

3737
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3838
bstr = { version = "1.12.0", default-features = false }

0 commit comments

Comments
 (0)