Skip to content

Commit 37f7c6b

Browse files
committed
adjust to renaming of git-pathspec to gix-pathspec
1 parent a49ba33 commit 37f7c6b

File tree

13 files changed

+42
-42
lines changed

13 files changed

+42
-42
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
- name: Install Rust
164164
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
165165
- uses: Swatinem/rust-cache@v2
166-
- run: set +x; for name in gix-actor gix-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob gix-hash git-hashtable git-mailmap gix-object git-packetline gix-path git-pathspec gix-quote git-refspec git-revision git-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
166+
- run: set +x; for name in gix-actor gix-attributes git-bitmap git-chunk git-command git-commitgraph git-date gix-glob gix-hash git-hashtable git-mailmap gix-object git-packetline gix-path gix-pathspec gix-quote git-refspec git-revision git-traverse gix-validate; do (cd $name && cargo build --target ${{ matrix.target }}); done
167167
name: crates without feature toggles
168168
- run: set +x; for feature in progress fs-walkdir-parallel parallel io-pipe crc32 zlib zlib-rust-backend fast-sha1 rustsha1 cache-efficiency-debug; do (cd gix-features && cargo build --features $feature --target ${{ matrix.target }}); done
169169
name: features of gix-features

Cargo.lock

Lines changed: 13 additions & 13 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
@@ -169,7 +169,7 @@ members = [
169169
"gix-tempfile",
170170
"gix-lock",
171171
"gix-attributes",
172-
"git-pathspec",
172+
"gix-pathspec",
173173
"git-refspec",
174174
"gix-path",
175175
"gix",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ is usable to some extent.
7676
* [gix-path](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-path)
7777
* [gix](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix)
7878
* [gix-attributes](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-attributes)
79-
* [git-pathspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-pathspec)
79+
* [gix-pathspec](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix-pathspec)
8080
* [git-index](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-index)
8181
* [git-revision](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-revision)
8282
* [git-command](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-command)

crate-status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ Check out the [performance discussion][git-traverse-performance] as well.
349349
* [ ] parse
350350
* [ ] check for match
351351

352-
### git-pathspec
352+
### gix-pathspec
353353
* [x] parse
354354
* [ ] matching of paths
355355

etc/check-package-size.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function indent () {
1717
echo "in root: gitoxide CLI"
1818
(enter cargo-smart-release && indent cargo diet -n --package-size-limit 100KB)
1919
(enter gix-actor && indent cargo diet -n --package-size-limit 5KB)
20-
(enter git-pathspec && indent cargo diet -n --package-size-limit 25KB)
20+
(enter gix-pathspec && indent cargo diet -n --package-size-limit 25KB)
2121
(enter git-refspec && indent cargo diet -n --package-size-limit 25KB)
2222
(enter gix-path && indent cargo diet -n --package-size-limit 20KB)
2323
(enter gix-attributes && indent cargo diet -n --package-size-limit 20KB)

gix-path/src/spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn assert_valid_hack(input: &BStr) {
2525

2626
impl Spec {
2727
/// Parse `input` into a `Spec` or `None` if it could not be parsed
28-
// TODO: tests, actual implementation probably via `git-pathspec` to make use of the crate after all.
28+
// TODO: tests, actual implementation probably via `gix-pathspec` to make use of the crate after all.
2929
pub fn from_bytes(input: &BStr) -> Option<Self> {
3030
assert_valid_hack(input);
3131
Spec(input.into()).into()

gix-pathspec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "git-pathspec"
2+
name = "gix-pathspec"
33
version = "0.1.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"

gix-pathspec/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `git-pathspec`
1+
# `gix-pathspec`
22

33
### Testing
44

gix-pathspec/fuzz/Cargo.lock

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

0 commit comments

Comments
 (0)