Skip to content

Commit 012a754

Browse files
committedSep 6, 2024··
Release gix-trace v0.1.10, gix-path v0.10.11
1 parent c759819 commit 012a754

File tree

33 files changed

+144
-221
lines changed

33 files changed

+144
-221
lines changed
 

‎Cargo.lock

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

‎gix-archive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ zip = ["dep:zip"]
2929
[dependencies]
3030
gix-worktree-stream = { version = "^0.15.0", path = "../gix-worktree-stream" }
3131
gix-object = { version = "^0.44.0", path = "../gix-object" }
32-
gix-path = { version = "^0.10.10", path = "../gix-path", optional = true }
32+
gix-path = { version = "^0.10.11", path = "../gix-path", optional = true }
3333
gix-date = { version = "^0.9.0", path = "../gix-date" }
3434

3535
flate2 = { version = "1.0.33", optional = true }

‎gix-attributes/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ doctest = false
1919
serde = ["dep:serde", "bstr/serde", "gix-glob/serde", "kstring/serde"]
2020

2121
[dependencies]
22-
gix-path = { version = "^0.10.10", path = "../gix-path" }
22+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2323
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
2424
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
25-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
25+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
2626

2727
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
2828
smallvec = "1.10.0"

‎gix-command/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ include = ["src/lib.rs", "LICENSE-*"]
1515
doctest = false
1616

1717
[dependencies]
18-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
19-
gix-path = { version = "^0.10.10", path = "../gix-path" }
18+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
19+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2020

2121
bstr = { version = "1.5.0", default-features = false, features = ["std", "unicode"] }
2222
shell-words = "1.0"

‎gix-config-value/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-path = { version = "^0.10.10", path = "../gix-path" }
22+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2323

2424
thiserror = "1.0.32"
2525
bstr = { version = "1.0.1", default-features = false, features = ["std"] }

‎gix-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde", "gix-ref/serde", "gix-glob/
2121
[dependencies]
2222
gix-features = { version = "^0.38.2", path = "../gix-features" }
2323
gix-config-value = { version = "^0.14.8", path = "../gix-config-value" }
24-
gix-path = { version = "^0.10.10", path = "../gix-path" }
24+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2525
gix-sec = { version = "^0.10.8", path = "../gix-sec" }
2626
gix-ref = { version = "^0.47.0", path = "../gix-ref" }
2727
gix-glob = { version = "^0.16.5", path = "../gix-glob" }

‎gix-credentials/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde"]
2121
[dependencies]
2222
gix-sec = { version = "^0.10.8", path = "../gix-sec" }
2323
gix-url = { version = "^0.27.5", path = "../gix-url" }
24-
gix-path = { version = "^0.10.10", path = "../gix-path" }
24+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2525
gix-command = { version = "^0.3.9", path = "../gix-command" }
2626
gix-config-value = { version = "^0.14.8", path = "../gix-config-value" }
2727
gix-prompt = { version = "^0.8.7", path = "../gix-prompt" }
28-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
28+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
2929

3030
thiserror = "1.0.32"
3131
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }

‎gix-diff/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ gix-object = { version = "^0.44.0", path = "../gix-object" }
3030
gix-filter = { version = "^0.13.0", path = "../gix-filter", optional = true }
3131
gix-worktree = { version = "^0.36.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
3232
gix-command = { version = "^0.3.9", path = "../gix-command", optional = true }
33-
gix-path = { version = "^0.10.10", path = "../gix-path", optional = true }
33+
gix-path = { version = "^0.10.11", path = "../gix-path", optional = true }
3434
gix-fs = { version = "^0.11.3", path = "../gix-fs", optional = true }
3535
gix-tempfile = { version = "^14.0.0", path = "../gix-tempfile", optional = true }
36-
gix-trace = { version = "^0.1.9", path = "../gix-trace", optional = true }
36+
gix-trace = { version = "^0.1.10", path = "../gix-trace", optional = true }
3737

3838
thiserror = "1.0.32"
3939
imara-diff = { version = "0.1.7", optional = true }

‎gix-dir/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ rust-version = "1.65"
1414
doctest = false
1515

1616
[dependencies]
17-
gix-trace = { version = "^0.1.9", path = "../gix-trace" }
17+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
1818
gix-index = { version = "^0.35.0", path = "../gix-index" }
1919
gix-discover = { version = "^0.35.0", path = "../gix-discover" }
2020
gix-fs = { version = "^0.11.3", path = "../gix-fs" }
21-
gix-path = { version = "^0.10.10", path = "../gix-path" }
21+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2222
gix-pathspec = { version = "^0.7.7", path = "../gix-pathspec" }
2323
gix-worktree = { version = "^0.36.0", path = "../gix-worktree", default-features = false }
2424
gix-object = { version = "^0.44.0", path = "../gix-object" }

‎gix-discover/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616

1717
[dependencies]
1818
gix-sec = { version = "^0.10.8", path = "../gix-sec" }
19-
gix-path = { version = "^0.10.10", path = "../gix-path" }
19+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2020
gix-ref = { version = "^0.47.0", path = "../gix-ref" }
2121
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2222
gix-fs = { version = "^0.11.3", path = "../gix-fs" }

‎gix-features/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ required-features = ["io-pipe"]
120120

121121
[dependencies]
122122
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
123-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
123+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
124124

125125
# for walkdir
126126
gix-utils = { version = "^0.1.11", path = "../gix-utils", optional = true }

‎gix-filter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ doctest = false
1616

1717
[dependencies]
1818
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
19-
gix-trace = { version = "^0.1.9", path = "../gix-trace" }
19+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
2020
gix-object = { version = "^0.44.0", path = "../gix-object" }
2121
gix-command = { version = "^0.3.9", path = "../gix-command" }
2222
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
2323
gix-utils = { version = "^0.1.12", path = "../gix-utils" }
24-
gix-path = { version = "^0.10.10", path = "../gix-path" }
24+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2525
gix-packetline = { package = "gix-packetline-blocking", version = "^0.17.5", path = "../gix-packetline-blocking" }
2626
gix-attributes = { version = "^0.22.5", path = "../gix-attributes" }
2727

‎gix-glob/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = false
1919
serde = ["dep:serde", "bstr/serde", "bitflags/serde"]
2020

2121
[dependencies]
22-
gix-path = { version = "^0.10.10", path = "../gix-path" }
22+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2323
gix-features = { version = "^0.38.1", path = "../gix-features" }
2424
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
2525
bitflags = "2"

‎gix-ignore/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ serde = ["dep:serde", "bstr/serde", "gix-glob/serde"]
2020

2121
[dependencies]
2222
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
23-
gix-path = { version = "^0.10.10", path = "../gix-path" }
24-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
23+
gix-path = { version = "^0.10.11", path = "../gix-path" }
24+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
2525

2626
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
2727
unicode-bom = { version = "2.0.3" }

‎gix-odb/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gix-features = { version = "^0.38.2", path = "../gix-features", features = ["rus
2424
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable" }
2525
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2626
gix-date = { version = "^0.9.0", path = "../gix-date" }
27-
gix-path = { version = "^0.10.10", path = "../gix-path" }
27+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2828
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
2929
gix-object = { version = "^0.44.0", path = "../gix-object" }
3030
gix-pack = { version = "^0.53.0", path = "../gix-pack", default-features = false }

‎gix-pack/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ wasm = ["gix-diff?/wasm"]
3535

3636
[dependencies]
3737
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
38-
gix-path = { version = "^0.10.10", path = "../gix-path" }
38+
gix-path = { version = "^0.10.11", path = "../gix-path" }
3939
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
4040
gix-chunk = { version = "^0.4.8", path = "../gix-chunk" }
4141
gix-object = { version = "^0.44.0", path = "../gix-object" }

‎gix-packetline-blocking/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async-io = []
2929
serde = ["dep:serde", "bstr/serde"]
3030

3131
[dependencies]
32-
gix-trace = { version = "^0.1.9", path = "../gix-trace" }
32+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
3333

3434
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }
3535
thiserror = "1.0.34"

‎gix-packetline/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ path = "tests/blocking-packetline.rs"
4141
required-features = ["blocking-io", "maybe-async/is_sync"]
4242

4343
[dependencies]
44-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
44+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
4545

4646
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }
4747
thiserror = "1.0.34"

‎gix-path/CHANGELOG.md

+38-116
Large diffs are not rendered by default.

‎gix-path/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-path"
5-
version = "0.10.10"
5+
version = "0.10.11"
66
repository = "https://github.com/Byron/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate of the gitoxide project dealing paths and their conversions"
@@ -15,7 +15,7 @@ rust-version = "1.65"
1515
doctest = false
1616

1717
[dependencies]
18-
gix-trace = { version = "^0.1.8", path = "../gix-trace" }
18+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
1919
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
2020
thiserror = "1.0.26"
2121
once_cell = "1.17.1"

‎gix-pathspec/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616

1717
[dependencies]
1818
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
19-
gix-path = { version = "^0.10.10", path = "../gix-path" }
19+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2020
gix-attributes = { version = "^0.22.5", path = "../gix-attributes" }
2121
gix-config-value = { version = "^0.14.8", path = "../gix-config-value" }
2222

‎gix-ref/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]
2323
[dependencies]
2424
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["walkdir"] }
2525
gix-fs = { version = "^0.11.3", path = "../gix-fs" }
26-
gix-path = { version = "^0.10.10", path = "../gix-path" }
26+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2727
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2828
gix-object = { version = "^0.44.0", path = "../gix-object" }
2929
gix-utils = { version = "^0.1.11", path = "../gix-utils" }

‎gix-revision/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ gix-date = { version = "^0.9.0", path = "../gix-date" }
3333
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable", optional = true }
3434
gix-revwalk = { version = "^0.15.0", path = "../gix-revwalk" }
3535
gix-commitgraph = { version = "0.24.3", path = "../gix-commitgraph" }
36-
gix-trace = { version = "^0.1.8", path = "../gix-trace", optional = true }
36+
gix-trace = { version = "^0.1.10", path = "../gix-trace", optional = true }
3737

3838
bstr = { version = "1.3.0", default-features = false, features = ["std"] }
3939
bitflags = { version = "2", optional = true }

‎gix-sec/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ document-features = { version = "0.2.1", optional = true }
3131
libc = "0.2.123"
3232

3333
[target.'cfg(windows)'.dependencies]
34-
gix-path = { version = "^0.10.10", path = "../gix-path" }
34+
gix-path = { version = "^0.10.11", path = "../gix-path" }
3535
windows-sys = { version = "0.52.0", features = [
3636
"Win32_Foundation",
3737
"Win32_Security_Authorization",

‎gix-status/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gix-index = { version = "^0.35.0", path = "../gix-index" }
2424
gix-fs = { version = "^0.11.3", path = "../gix-fs" }
2525
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2626
gix-object = { version = "^0.44.0", path = "../gix-object" }
27-
gix-path = { version = "^0.10.10", path = "../gix-path" }
27+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2828
gix-features = { version = "^0.38.2", path = "../gix-features", features = ["progress"] }
2929
gix-filter = { version = "^0.13.0", path = "../gix-filter" }
3030
gix-worktree = { version = "^0.36.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }

‎gix-submodule/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ doctest = false
1818
gix-pathspec = { version = "^0.7.7", path = "../gix-pathspec" }
1919
gix-refspec = { version = "^0.25.0", path = "../gix-refspec" }
2020
gix-config = { version = "^0.40.0", path = "../gix-config" }
21-
gix-path = { version = "^0.10.10", path = "../gix-path" }
21+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2222
gix-url = { version = "^0.27.5", path = "../gix-url" }
2323

2424
bstr = { version = "1.5.0", default-features = false }

‎gix-trace/CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## 0.1.10 (2024-09-06)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 5 commits contributed to the release over the course of 76 calendar days.
16+
- 6 commits contributed to the release over the course of 76 calendar days.
1717
- 145 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Prepare changelogs prior to release. ([`c759819`](https://github.com/Byron/gitoxide/commit/c759819666fdad1ba743eed8e9458517f5cdf63c))
2829
- Merge pull request #1557 from Byron/merge-base ([`649f588`](https://github.com/Byron/gitoxide/commit/649f5882cbebadf1133fa5f310e09b4aab77217e))
2930
- Allow empty-docs ([`beba720`](https://github.com/Byron/gitoxide/commit/beba7204a50a84b30e3eb81413d968920599e226))
3031
- Merge branch 'global-lints' ([`37ba461`](https://github.com/Byron/gitoxide/commit/37ba4619396974ec9cc41d1e882ac5efaf3816db))

‎gix-trace/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lints.workspace = true
44
name = "gix-trace"
55
description = "A crate to provide minimal `tracing` support that can be turned off to zero cost"
66
repository = "https://github.com/Byron/gitoxide"
7-
version = "0.1.9"
7+
version = "0.1.10"
88
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
99
license = "MIT OR Apache-2.0"
1010
edition = "2021"

‎gix-url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = ["dep:serde", "bstr/serde"]
2020

2121
[dependencies]
2222
gix-features = { version = "^0.38.1", path = "../gix-features" }
23-
gix-path = { version = "^0.10.10", path = "../gix-path" }
23+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2424

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

‎gix-worktree-state/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gix-fs = { version = "^0.11.3", path = "../gix-fs" }
2222
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2323
gix-object = { version = "^0.44.0", path = "../gix-object" }
2424
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
25-
gix-path = { version = "^0.10.10", path = "../gix-path" }
25+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2626
gix-features = { version = "^0.38.2", path = "../gix-features" }
2727
gix-filter = { version = "^0.13.0", path = "../gix-filter" }
2828

‎gix-worktree-stream/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gix-attributes = { version = "^0.22.5", path = "../gix-attributes" }
2222
gix-filter = { version = "^0.13.0", path = "../gix-filter" }
2323
gix-traverse = { version = "^0.41.0", path = "../gix-traverse" }
2424
gix-fs = { version = "^0.11.3", path = "../gix-fs" }
25-
gix-path = { version = "^0.10.10", path = "../gix-path" }
25+
gix-path = { version = "^0.10.11", path = "../gix-path" }
2626

2727
thiserror = "1.0.26"
2828
parking_lot = "0.12.1"

‎gix-worktree/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ gix-fs = { version = "^0.11.3", path = "../gix-fs" }
2828
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
2929
gix-object = { version = "^0.44.0", path = "../gix-object" }
3030
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
31-
gix-path = { version = "^0.10.10", path = "../gix-path" }
31+
gix-path = { version = "^0.10.11", path = "../gix-path" }
3232
gix-attributes = { version = "^0.22.5", path = "../gix-attributes", optional = true }
3333
gix-validate = { version = "^0.9.0", path = "../gix-validate", optional = true }
3434
gix-ignore = { version = "^0.11.4", path = "../gix-ignore" }

‎gix/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ gix-revision = { version = "^0.29.0", path = "../gix-revision", default-features
333333
gix-revwalk = { version = "^0.15.0", path = "../gix-revwalk" }
334334
gix-negotiate = { version = "^0.15.0", path = "../gix-negotiate", optional = true }
335335

336-
gix-path = { version = "^0.10.10", path = "../gix-path" }
336+
gix-path = { version = "^0.10.11", path = "../gix-path" }
337337
gix-url = { version = "^0.27.5", path = "../gix-url" }
338338
gix-traverse = { version = "^0.41.0", path = "../gix-traverse" }
339339
gix-diff = { version = "^0.46.0", path = "../gix-diff", default-features = false }
@@ -342,7 +342,7 @@ gix-features = { version = "^0.38.2", path = "../gix-features", features = [
342342
"progress",
343343
"once_cell",
344344
] }
345-
gix-trace = { version = "^0.1.9", path = "../gix-trace" }
345+
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
346346

347347
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
348348
gix-credentials = { version = "^0.24.5", path = "../gix-credentials", optional = true }

0 commit comments

Comments
 (0)
Please sign in to comment.